Skip to content

Instantly share code, notes, and snippets.

@skycocker
Forked from jharding/the-basics.html
Created May 26, 2015 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skycocker/382c76f696c50a165585 to your computer and use it in GitHub Desktop.
Save skycocker/382c76f696c50a165585 to your computer and use it in GitHub Desktop.
<div id="the-basics">
<input class="typeahead" type="text" placeholder="States of USA">
</div>
var substringMatcher = function(strs) {
return function findMatches(q, cb) {
var matches, substrRegex;
// an array that will be populated with substring matches
matches = [];
// regex used to determine if a string contains the substring `q`
substrRegex = new RegExp(q, 'i');
// iterate through the pool of strings and for any string that
// contains the substring `q`, add it to the `matches` array
$.each(strs, function(i, str) {
if (substrRegex.test(str)) {
matches.push(str);
}
});
cb(matches);
};
};
var states = ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California',
'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', 'Hawaii',
'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana',
'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota',
'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire',
'New Jersey', 'New Mexico', 'New York', 'North Carolina', 'North Dakota',
'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island',
'South Carolina', 'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont',
'Virginia', 'Washington', 'West Virginia', 'Wisconsin', 'Wyoming'
];
$('#the-basics .typeahead').typeahead({
hint: true,
highlight: true,
minLength: 1
},
{
name: 'states',
source: substringMatcher(states)
});
@sohel3csedu
Copy link

It's not working for me :(
i guess it's not triggering the method typeahed when i am typing.

@siddharth-rao
Copy link

How to add multiple keywords? e.g. I want to add two states separated by a comma. Is it possible?

Copy link

ghost commented Jan 13, 2017

I cannot seem to get this to work either. Do you need to include all the various JS files or just the script above?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment