049_CVW_NOV17_Layout 1-1
document.addEventListener('DOMContentLoaded', function() {
const form = document.querySelector('._form_360 form'); // Adjust selector if needed
const honeypot = form.querySelector('input[name="field[76]"]'); // The hidden field name
if (form && honeypot) {
form.addEventListener('submit', function(event) {
if (honeypot.value !== '') {
event.preventDefault(); // Prevent form submission if the honeypot is filled
alert('Spam detected. Form submission blocked.');
}
});
}
});
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok