Make jQuery: kis- és nagybetűk nem tartalmaznak CSS-trükkök

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

Frissítés a jQuery 1.8-hoz

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

Ezzel a helyén,

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

mindhárom elemet kiválasztaná:

 john John hey hey JOHN hey hey 

Bemutató Pablo Fortes-en keresztül.