This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Form Submission issue after hitting Enter Key

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

#41780
Ernest MarcinkoErnest Marcinko
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.