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

Reply To: Return chosen result id via jquery object without redirect

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Return chosen result id via jquery object without redirect Reply To: Return chosen result id via jquery object without redirect

#24517
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

Sure, if you are planning to use a custom jQuery function, you can use this as well as a baseline:

jQuery(function($){
   $('.asp_r').on('click touchend', 'a', function(e){
       e.preventDefault(); // Stops the redirection 
   });
});

This will stop any interaction with the results, and then you can add your own.