The personal information we collect from consumers falls into the following categories: identifiers, information that can be linked to an individual, internet or electronic network activity information, and geolocation data. This collected personal information is used for various business or commercial purposes, which include:

For more information, please refer to our Privacy Policy, available at the following link: https://motoraccidenthelps.com/privacy-policy/. If you are a resident of California, you have the right to opt out of the sale of your personal information in accordance with the California Consumer Privacy Act (“CCPA”). To begin the opt-out process, kindly provide the requested information in the form below and click on the “Do Not Sell My Personal Information” link at https://motoraccidenthelps.com/ccpa-form/, or you can also send us an email at CCPA-optout@motoraccidenthelps.com.

In order to process your request effectively, we may require the following information from you: your name, address, email address, and phone number. Please include these details along with your request.

If you prefer to designate an authorized agent to handle your opt-out request regarding the sale of your personal information, certain conditions must be met before we can proceed with the request. These conditions include:

  1. Providing us with proof of your written and signed authorization granting the authorized agent the right to act on your behalf.
  2. Verifying your identity directly with us to ensure the validity of the request.
  3. Obtaining direct confirmation from you that you have authorized the agent to submit the request on your behalf.

Rest assured that the information you provide in your opt-out request will solely be used for verification and compliance purposes pertaining to your specific request. If you have a disability that hinders your ability to submit an opt-out request, please reach out to us via email at CCPA-optout@motoraccidenthelps.com or send a mail to motoraccidenthelps, 312 W. 2nd St #2212 Casper, WY 82601. By contacting us through these channels, you can request to receive this notice and related information in an alternative format that accommodates your specific needs.

document.addEventListener('DOMContentLoaded', function() { // Listen for keydown event on the entire form document.querySelector('form').addEventListener('keydown', function(event) { // Check if the key pressed is "Enter" and not a textarea or submit button if (event.key === "Enter" && event.target.tagName !== "TEXTAREA") { event.preventDefault(); // Prevent default behavior var nextButton = document.querySelector('.e-form__buttons__wrapper__button-next'); if (nextButton) { nextButton.click(); // Trigger the click event on the Next button } } }); }); document.addEventListener('DOMContentLoaded', function() { jQuery(document).ready(function($) { // Attach a submit handler to the form $('#your-elementor-form-id').on('submit', function(event) { // Get the DOB field value var dob = $('#form-field-dob').val(); // Regular expression to validate YYYY-MM-DD format var regex = /^\d{4}-\d{2}-\d{2}$/; // Check if the date is in the correct format if (!dob.match(regex)) { alert('Please enter your Date of Birth in the format YYYY-MM-DD.'); event.preventDefault(); // Prevent form submission } }); }); });