jQuery(document).ready(function($) {
$(document).on('submit', '.elementor-form', function(e) {
var $form = $(this);
var emailInput = $form.find('input[type="email"]');
// 🔴 ADD YOUR BLOCKED EMAIL ADDRESSES BELOW 🔴
var blockedList = [
'steve@consumerprodemail.com',
'dianacruz.mkt@gmail.com',
'bemibrooks.dev@gmail.com',
'pageranktechnology@gmail.com',
'terryfowlerr83@gmail.com'
];
// 🔴 END BLOCKED LIST 🔴
if (emailInput.length) {
var email = emailInput.val().toLowerCase();
if (blockedList.indexOf(email) !== -1) {
e.preventDefault();
e.stopImmediatePropagation();
alert('This email address is not allowed.');
emailInput.css('border-color', 'red');
return false;
}
}
});
});
Start typing to see products you are looking for.