I am looking to add autocomplete to my jQuery plugin input field and support jQuery 1.7+, something lightweight preferably.
Looking at bootstrap 3 js requires jQuery 1.9+, so I scrapped that off the list for now. jQuery UI autocomplete is an option but necessarily want users who would want to use my plugin to include jQuery ui file as well as its quite big.
I am looking at the following options and want to make sure they will work for the following scenario. my plugin will add a text input field to the div where my plugin is attached, this text input field will then have autocomplete feature pulling data from a restful web service.
Select 2 (https://select2.github.io/examples.html) looks nice, but I just want to make sure this can also be used for autocomplete on input fields ?
selectize.js (http://brianreavis.github.io/selectize.js/) again seems more focused on select fields but I think it's usable for input fields as well
Any suggestions ?