Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Form Submission issue after hitting Enter Key › Reply To: Form Submission issue after hitting Enter Key
March 15, 2023 at 1:27 pm
#41780
Keymaster
Hi,
You have a custom code added to the page, which casuses the issue:
$(document).on('keypress', '.wpdreams_asp_sc.asp_main_container form input[type="search"]', function(event) {
if(event.which == 13) {
if(!$(this).val()) return false;
window.location.href = '/?s='+ $(this).val() + '&type=' + type;
}
});
It is located in wp-content/themes/Guru/js/script.js file.