Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › No filter selected by default › Reply To: No filter selected by default
April 26, 2024 at 4:45 pm
#47959
Keymaster
I think so, it does not use jQuery, but it’s native. However I think you can use a helper method to disregard the event handlers, something like:
jQuery(function($){
let t;
t = setInterval(()=>{
if ( typeof WPD !== 'undefined' && typeof WPD.dom !== 'undefined' ) {
WPD.dom('.asp_option').off();
clearInterval(t);
}
}, 100);
});