Skip to content

Instantly share code, notes, and snippets.

@stormsson
Created July 10, 2013 14:11
Show Gist options
  • Save stormsson/5966607 to your computer and use it in GitHub Desktop.
Save stormsson/5966607 to your computer and use it in GitHub Desktop.
JS - Bootstrap Typeahead / autocomplete
$('.typeahead').typeahead({
source: function (query, process) {
return $.get('/typeahead', { query: query }, function (data) {
return process(data.options);
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment