A simple autocomplete plugin that transparently works with a key value json array (hash).
You may ask why another jquery autocomplete plugin
Because there was no jquery autocomplete that had the following features all in one
As much as I hate reinventing the wheel, there was no good wheel in my case.
So here are some examples and explanations:
$("input#example").autocomplete("autocomplete.php");//using default parameters
$("input#example").autocomplete("autocomplete.php",{minChars:3,timeout:3000,validSelection:false,parameters:{'myparam':'myvalue'},before : function(input,text) {},after : function(input,text) {}});
Download all necessary JQuery autocomplete files
Share this with the world
Related
Comments
Thanks a lot!! This is great and was really missing!!!
Posted on 2008-11-25 09:40:53One apparent bug... if the drop down list fills and you click off the field (focus on field blurs) the drop down list remains (needs to go away).
Posted on 2008-12-06 07:36:55Another possible bug, I may have found. When someone types in something not that is not in the json result, and presses [Tab] the input field is cleared.
Posted on 2008-12-30 13:28:57Make yourself heard