Post-Traumatic Stress: Seeking Psychological Help After an Accident

If you or a loved one in Nevada has been involved in a serious accident, such as a vehicle crash or bad fall, you

Read More

Documenting Your Accident: A Checklist for Personal Injury Claims

If you’ve been in an accident in Nevada or the Las Vegas area, properly documenting everything related to the incident is crucial for a

Read More

Understanding the Legal Process for Catastrophic Injuries in Nevada

Sustaining a catastrophic injury in Nevada brings immense complexity. The road to stability can be disorienting. However, knowledge and preparation can illuminate the path

Read More

Calculating Damages: How Your Compensation is Determined

Calculating damages after a personal injury in Las Vegas can be confusing. You may wonder – how much compensation could I potentially receive for

Read More

Filing a Personal Injury Lawsuit in Nevada: When and How to Initiate Legal Action

If you’ve been injured in Las Vegas, you likely have questions about legal action. Should you file a lawsuit? Jack Bernstein has over 40

Read More

Litigation Process for Motor Vehicle Accidents in Nevada

Being in a motor vehicle accident can be a traumatic and life-altering experience. In the aftermath of a collision, you may be facing significant

Read More

Insurance Claims in Nevada

Dealing with insurance claims after an accident can be a confusing and frustrating process for Nevada residents. Though you may expect a smooth claims

Read More

Nevada Traffic Laws and Violations

Traffic laws exist for a reason – to protect motorists and pedestrians from harm. However, when drivers disregard regulations like speed limits, right of

Read More

Should You Seek Medical Care After a Car Accident?

Car accidents, regardless of their severity, can be traumatic experiences. While the immediate aftermath often revolves around assessing vehicle damage and exchanging insurance information,

Read More
Whiplash Attorney Las Vegas

How Much Is a Whiplash Claim Worth?

Whiplash is a term frequently associated with car accidents, especially rear-end collisions. It describes a neck injury resulting from the sudden and forceful back-and-forth

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); });