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

Reply To: Custom close button in results overlay

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Custom close button in results overlay Reply To: Custom close button in results overlay

#37067
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Well, that is custom coding, so I don’t know the innter workings of it – but I guess you need to change the search wrap to display “block”, when the search is finished?

So I guess something like:

$(".asp_main_container").on("asp_search_end", function() {
  $('#search-results-wrap').css('display','block');
});