Faceți jQuery: conține majuscule / minuscule - CSS-Tricks

Anonim
// NEW selector jQuery.expr(':').Contains = function(a, i, m) ( return jQuery(a).text().toUpperCase() .indexOf(m(3).toUpperCase()) >= 0; ); // OVERWRITES old selecor jQuery.expr(':').contains = function(a, i, m) ( return jQuery(a).text().toUpperCase() .indexOf(m(3).toUpperCase()) >= 0; );

Actualizare pentru a funcționa pentru jQuery 1.8

$.expr(":").contains = $.expr.createPseudo(function(arg) ( return function( elem ) ( return $(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0; ); ));

Cu acest lucru în loc,

$("div:contains('John')")

ar selecta toate aceste trei elemente:

 john John hey hey JOHN hey hey 

Demo prin Pablo Fortes.