Skip to content

Instantly share code, notes, and snippets.

@MissAllSunday
Created March 15, 2013 18:54
Show Gist options
  • Save MissAllSunday/5172154 to your computer and use it in GitHub Desktop.
Save MissAllSunday/5172154 to your computer and use it in GitHub Desktop.
filter: function(query, data, search_key) {
var _this = this;
return $.map(data, function(item, i) {
var name;
name = $.isPlainObject(item) ? item[search_key] : item;
if (name.toLowerCase().indexOf(query) >= 0) {
return item;
}
});
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment