Skip to content

Instantly share code, notes, and snippets.

@slav123
Created September 11, 2012 04:20
Show Gist options
  • Save slav123/3695925 to your computer and use it in GitHub Desktop.
Save slav123/3695925 to your computer and use it in GitHub Desktop.
twitter bootstrap typeahead workign example
$('.typeahead').typeahead({
source: function (query, process) {
return $.get('/typeahead', { 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