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

Reply To: Show results onload homepage

#5084
Ernest MarcinkoErnest Marcinko
Keymaster

Oh then, definitely that’s the problem. The script is trying to trigger a key-up event, which is not working of course.

So all you need to do is change line 16 of the code I’ve given you from:

$input.keyup();

to:

$($(“.promagnifier”).get(0)).click();

And that will trigger the icon click instead, which hopefully works 🙂