Last Updated: 4/16/2025

Use of Cookies

Cookies are used to automatically record certain non-personal information about your visit to our website such as the time and extent of your use of the site. Information gathered is used for systems administration and to track potential abuse of our terms and conditions of use. Cookies do not contain personal information and are deleted from the user’s computer upon leaving the applicable Bernstein Injury Lawyer’s website. The limited non-personal information that we do collect helps us to understand traffic flow throughout our website. We may provide summary statistics about traffic patterns, consisting of anonymous aggregate data, to a reputable third party. These statistics do not contain personal information.

Use of IP Addresses

IP addresses are used to help diagnose problems with our server and to administer our website. Your IP address is a code which is assigned to your computer every time you connect to the Internet. We use aggregated IP address information to compile reports on the demographics of the usage of the Bernstein Injury Lawyer’s website for purposes of system administration, marketing, and to track potential abuse of our terms and conditions of use. We do not use IP address information in a form that is personally identifiable except where that IP address has been responsible for violation of our terms and conditions of use. At all times, we reserve the right to respond to and comply with law enforcement and judicial process, including but not limited to responses to subpoenas.

Links to Other Sites

The Jack Bernstein Injury Lawyer’s website contains links to other sites. When you leave the Jack Bernstein Injury Lawyer’s website, Jack Bernstein Injury Lawyers is not responsible for the privacy practices or the content of other websites. The privacy policies of Jack Bernstein Injury Lawyers do not apply to any external links. We encourage you to read the privacy policies of any site you link to from ours, especially if you share any personal information. We are not responsible for the content, business practices, or privacy practices of other websites.

Security

The Jack Bernstein Injury Lawyer’s website uses security measures to protect all data we collect from users and to protect the loss, alteration and misuse of information under our control.

 

 

Company: Jack Bernstein, Injury Lawyers, PLLC
3970 E. Warm Springs Blvd, Building 4, Suite 200, Las Vegas, NV 89120
Phone : (702) 633-3333
Email : Jack@Bernsteinslaw.com

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