forked from 0x2620/oxjs
autocomplete, continued
This commit is contained in:
parent
2f233c28e4
commit
8f18c726b6
6 changed files with 21 additions and 3 deletions
|
|
@ -330,7 +330,8 @@
|
|||
id: "state",
|
||||
autocomplete: function(value, callback) {
|
||||
value = value.toLowerCase();
|
||||
var items = [];
|
||||
var items = [],
|
||||
regexp = new RegExp("(" + value + ")", "ig"),
|
||||
states = [
|
||||
"Alabama", "Alaska", "Arizona", "Arkansas", "California",
|
||||
"Colorado", "Connecticut", "Delaware", "District of Columbia", "Florida",
|
||||
|
|
@ -349,7 +350,7 @@
|
|||
} else {
|
||||
$.each(states, function(i, state) {
|
||||
if (state.toLowerCase().indexOf(value) > -1) {
|
||||
items.push(state);
|
||||
items.push(state.replace(regexp, "<span class=\"OxHighlight\">$1</span>"));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue