// 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 için çalışmak için güncelleme
$.expr(":").contains = $.expr.createPseudo(function(arg) ( return function( elem ) ( return $(elem).text().toUpperCase().indexOf(arg.toUpperCase()) >= 0; ); ));
Bu yerinde olduğunda,
$("div:contains('John')")
bu öğelerin üçünü de seçer:
john John hey hey JOHN hey hey
Pablo Fortes üzerinden demo.