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

Reply To: Taxonomy archive search

#18123
Ernest MarcinkoErnest Marcinko
Keymaster

Hi Daniel,

That is impossible to tell without seeing your custom code, and even then it might be problematic.

One thing you have to make sure, is that the event handlers need to be attached dynamically, as the result list updates on every ajax request, and previous handlers get detached.
Something like this:

[html]$(‘.asp_r’).on(‘click’, ‘.asp_content’, function(){ // your code });[/html]