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

Reply To: No filter selected by default

#47959
Ernest MarcinkoErnest Marcinko
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);
});