Skip to content

Instantly share code, notes, and snippets.

View adillera's full-sized avatar

Alfonso Juan Dillera adillera

  • Antipolo City, Philippines
View GitHub Profile
(function($) {
// Make jQuery's :contains case insensitive (like HTML5 datalist)
// Changed the name to prevent overriding original functionality
$.expr[':'].RD_contains = function(a, i, m) {
return $(a).text().toUpperCase().indexOf(m[3].toUpperCase()) >= 0;
};
$.fn.relevantDropdown = function(options) {