Search Results

2
votes

Is there a case insensitive jQuery :contains selector?

jQuery.expr[':'].contains = function(a,i,m){ return jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())>=0; }; The update code works great in 1.3, but "conta …