Contact Us

San Clemente Office
Office Hours
Tuesday - Friday
9am to 3pm
Address
190 Avenida La Pata, San Clemente, CA 92673, USA
Phone
+1 (949) 361 1022
Email

Send Us A Message
document.addEventListener("DOMContentLoaded", function() {
// Find all forms with data-captcha="false" attribute
const formsToDisableCaptcha = document.querySelectorAll('[data-captcha="false"] form');
formsToDisableCaptcha.forEach(function(form) {
// Example of disabling captcha by removing its element or modifying its properties
const captchaField = form.querySelector('.captcha-token'); // Update with the actual captcha class or ID
if (captchaField) {
// Remove captcha element or disable its functionality
captchaField.remove(); // Option 1: Remove the captcha element entirely
// Option 2: If you need to send an empty or default value instead of removing
// captchaField.value = '';
}
// Additional logic if needed to handle form submission or other tasks
});
});