Boost Your Typing Speed (WPM) and Accuracy
jQuery(window).on('elementor/frontend/init', function () { elementorFrontend.hooks.addAction('frontend/element_ready/form.default', function ($scope) { $scope.find('form').on('submit', function (e) { const emailInput = $(this).find('input[type="email"]'); if (!emailInput.length) return; const blocked = ['gmail.com','yahoo.com','hotmail.com','outlook.com']; const email = emailInput.val().toLowerCase(); const domain = email.split('@')[1]; if (blocked.includes(domain)) { e.preventDefault(); alert('Please use your business email address'); emailInput.focus(); return false; } }); }); });
Skip to content