Open jambox opened 12 years ago
ping on this issue is there any reason to why .on() was used instead of .bind() ?
I've verified this. The latest version of quicksearch does not have working examples because of this change. It uses Google's 1.4 version of JQuery instead of 1.7 or greater.
First of all, great plugin! Thanks for publishing it...
The issue is on Line 172:
Because the behaviors are bound with .on() instead of .bind(), this plugin is incompatible with any jQuery versions earlier than 1.7. I know it's not ideal to be using an older version of jQuery, but I was just working on a site that is using 1.2.6, and a simple change back to .bind() solved this problem.
Thanks