The suggestions are tied to a keyup event: https://github.com/scottsweb/instant-search-suggest/blob/master/assets/js/iss.js#L84
This would need to be changed to a change event: http://api.jquery.com/change/ – the only way to do this would be to hack the plugin at the moment.
Pull requests are welcome if you feel this should be a permanent change: https://github.com/scottsweb/instant-search-suggest
so
$(“.iss,input[name=’s’]”).keyup(function(event) {
need to change to
$(“.iss,input[name=’s’]”).change(function(event) {
?
why do not implement this in plugin ? 🙂 btw i can donate for fixes 5$, for eastern europe citizen i hope would be fine:P
you could make a pro version or something and you would be satisfied more i think 😛
greetings!
That looks right to me.
I will change it if I get a chance to do so in future. I have opened a ticket here: https://github.com/scottsweb/instant-search-suggest/issues/3
No need to donate.