What Happens When Your Car Is Totaled but Still Drivable?

It’s confusing enough to be told your car is a “total loss” after a Las Vegas car accident. When you can still turn the

Read More

Slip and Fall Settlements With Surgery

If your doctor has recommended surgery after your slip and fall accident, you’re likely wondering how this affects your potential settlement. The answer is

Read More

Can Accident Reimbursement Be Claimed on Taxes As Deductibles

After a serious Las Vegas car accident, your settlement should bring financial relief, not a new wave of stress about taxes. It’s a common

Read More

Can You File an Insurance Claim After an Car Accident Without a Police Report

Realizing you don’t have a police report after a Las Vegas car accident can cause a wave of panic. Take a breath. The short

Read More

Questions To Ask Personal Injury Lawyer

You’ve been hurt in an accident, and now you’re facing one of the most important decisions in your recovery: choosing the right personal injury

Read More

Common Types of Injuries From a Slip and Fall

If you’ve recently fallen and are wondering about the extent of your injuries, what seems like minor soreness today could develop into significant problems

Read More

Does Homeowners Insurance Cover Personal Injury to the Homeowner

If you’ve been injured on your own property in Las Vegas and are wondering whether your homeowners insurance will cover your medical bills, the

Read More
Jack's Got Your Back

How To Choose a Personal Injury Lawyer

After an accident in Las Vegas, you’ve likely realized you need legal help – but choosing the right personal injury lawyer can feel overwhelming

Read More

Wrongful Death Settlement Calculator

Wrongful Death Settlement Calculator: Nevada Case Values and Compensation Guide When someone you love dies due to another person’s negligence, understanding the potential value

Read More

How Statutes of Limitations Can Impact Wrongful Death Lawsuits

Facing a Wrongful Death – Understanding Nevada’s Critical Legal Timelines Losing someone due to another person’s negligence or wrongful actions brings devastating grief—and urgent

Read More
/** * Sets a cookie based on given values in parameters * * since v1.1.0 * * @param name * @param value * @param days */ function setCookie(name, value, days) { var expires = ""; if (days) { var date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); expires = "; expires=" + date.toUTCString(); } document.cookie = name + "=" + ( value || "" ) + expires + "; path=/"; } /** * Retrieves cookie * * since v1.1.0 * * @param name * @returns {string|null} */ function getCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') c = c.substring(1, c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length); } return null; } /** * Creates hidden fields based on values * stored in the tracking_cookie and appends * these fields in the * after 1 second as to not conflict with cookie creation */ setTimeout(function() { // Helper function to create and append hidden input fields function createHiddenField(id, name, value) { if (value) { var container = document.getElementById('hidden-fields'); if (container) { // Check if the container element exists var hiddenField = document.createElement("input"); hiddenField.setAttribute("type", "hidden"); hiddenField.setAttribute("id", id); hiddenField.setAttribute("name", name); hiddenField.setAttribute("value", value); container.appendChild(hiddenField); } } } var tracking_cookie = getCookie('tracking_cookie'); if (tracking_cookie) { var decodedCookie = decodeURIComponent(tracking_cookie); var campaignData = JSON.parse(decodedCookie); var fields = [ { id: "utm_campaign", name: "utm_campaign", value: campaignData.utm_campaign }, { id: "utm_source", name: "utm_source", value: campaignData.utm_source }, { id: "utm_medium", name: "utm_medium", value: campaignData.utm_medium }, { id: "utm_content", name: "utm_content", value: campaignData.utm_content }, { id: "utm_term", name: "utm_term", value: campaignData.utm_term }, { id: "utm_keyword", name: "utm_keyword", value: campaignData.utm_keyword }, { id: "gclid", name: "gclid", value: campaignData.gclid }, { id: "fbclid", name: "fbclid", value: campaignData.fbclid }, { id: "twclid", name: "twclid", value: campaignData.twclid }, ]; // Iterate through the fields and create hidden inputs fields.forEach(function(field) { createHiddenField(field.id, field.name, field.value); }); } }, 1000); document.addEventListener('DOMContentLoaded', function () { const loader = document.querySelector('.custom-loader'); const submitButton = document.querySelector('.th-btn'); document.addEventListener('wpcf7beforesubmit', function () { if (loader) loader.style.display = 'block'; if (submitButton) submitButton.disabled = true; }, false); document.addEventListener('wpcf7submit', function () { if (loader) loader.style.display = 'none'; if (submitButton) submitButton.disabled = false; }, false); });