Contact Us

Thank You For Contacting Us

Enquiry Form: Ask the Experts

Please enable JavaScript in your browser to complete this form.
Name
Email

Thank You

Thanks for contacting us. We have received your querry and we will get back to you soon.

Thank You

document.addEventListener("DOMContentLoaded", function() { const form = document.querySelector('form.wpforms-form'); // WPForms form selector const textField = form.querySelector('textarea[name="your_text_field_name"]'); // Adjust if Single Line Text // For Single Line Text use: // const textField = form.querySelector('input[name="your_text_field_name"]'); form.addEventListener("submit", function(event) { if (textField.value.length < 100) { alert("Please enter at least 100 characters."); event.preventDefault(); // Prevent form submission } }); });