Skip to content

Instantly share code, notes, and snippets.

@zirosas
Created May 11, 2013 00:41
Show Gist options
  • Save zirosas/5558434 to your computer and use it in GitHub Desktop.
Save zirosas/5558434 to your computer and use it in GitHub Desktop.
bootstrap typeahead ajax
$(function(){
$('#typeahead').typeahead({
source: function (query, process) {
return $.getJSON(
'lookup.json',
{ query: query },
function (data) {
return process(data);
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment