Make jQuery: περιέχει πεζά-κεφαλαία - 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; );

Ενημέρωση για εργασία για το jQuery 1.8

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

Με αυτό στη θέση του,

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

θα επέλεγε και τα τρία από αυτά τα στοιχεία:

 john John hey hey JOHN hey hey 

Επίδειξη μέσω Pablo Fortes.