Last active
May 15, 2024 16:16
-
-
Save jharding/9458749 to your computer and use it in GitHub Desktop.
Example for http://twitter.github.io/typeahead.js/examples/.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="bloodhound"> | |
<input class="typeahead" type="text" placeholder="States of USA"> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// constructs the suggestion engine | |
var states = new Bloodhound({ | |
datumTokenizer: Bloodhound.tokenizers.whitespace, | |
queryTokenizer: Bloodhound.tokenizers.whitespace, | |
// `states` is an array of state names defined in "The Basics" | |
local: states | |
}); | |
$('#bloodhound .typeahead').typeahead({ | |
hint: true, | |
highlight: true, | |
minLength: 1 | |
}, | |
{ | |
name: 'states', | |
source: states | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A nice article based on a maintained fork(v1.2.1) since the original project has been abandoned since 3+ years (Ref)