Skip to content

Instantly share code, notes, and snippets.

@boo1ean
Last active December 10, 2015 18:49
Show Gist options
  • Save boo1ean/4477574 to your computer and use it in GitHub Desktop.
Save boo1ean/4477574 to your computer and use it in GitHub Desktop.
Twitter bootstrap typeahead through javascript
$("#query-input").typeahead({
source: ["Hello", "World", "Autocomplete"],
highlighter: function(item) {
return item + "!";
},
updater: function(item) {
alert(item, "is chosen");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment