Using the jQuery UI AutoComplete widget with Knockout
The jQuery UI AutoComplete widget is a nice one to use when the a set of know values is frequently used, like a list of city names, but you still want to leave the end user the capability to enter completely new values. And as can be seen from the examples it’s basic usage is really simple and straightforward, something like: 1: var firstNames = [‘Joe’, ‘Maurice’, ‘Jake’]; 2: $(‘#firstName’).autocomplete({ source: firstNames }); Adding Knockout to the mix Knockout is also a nice data-binding library that is really easy to use. A simple page that lets a user enter … Continue reading Using the jQuery UI AutoComplete widget with Knockout