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

Reply To: asp_results_show broken

#35973
Ernest MarcinkoErnest Marcinko
Keymaster

Oh okay, I see the issue now.

The code is not correct, you are executing the event on the document handler, while it should be on the search container:

jQuery(".asp_main_container").on("asp_results_show",function(event, request, settings) {
	alert("hello");
});

This will work.