Make jQuery: contains Case-Insensitive - Triky CSS

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; );

Aktualizace pro jQuery 1.8

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

S tímto na místě

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

vybere všechny tři z těchto prvků:

 john John hey hey JOHN hey hey 

Demo přes Pablo Fortes.