Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Taxonomy archive search › Reply To: Taxonomy archive search
June 5, 2018 at 12:00 pm
#18123
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]