Blog of Alexander Mamchenkov … mammoth cave …

Archive for September 2nd, 2010

Searchable drop downs with jQuery

09.02.2010 · Posted in Technology

Today was looking for a plugin to make huge drop-downs searchable. I have first checked the jQuery Autocomplete plugin, but that works better with plain text inputs, then browsed through tens of other similar plugins and even tried couple of them. Finally, my choice went to jQuery Searchable Drop Down Plugin.

Main reason of choice – ease of setup. Just include the script in the head and then use something like this in your code:

$(function() { $('#myDropDownSelectElementId').searchable(); });

Finish story, works just like it supposed to.