show/hide this revision's text 2 added faster way to do the same; added 24 characters in body

What I ended up doing is (after some googling) :

jQuery.extend(
	jQuery.expr[':'], { 
		Contains : "jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())>=0" 
});

This will extend jquery to have a :Contains selector that is case insensitive, the :contains selector remains unchanged.

Edit: Apparently accessing the DOM directly by using

(a.textContent || a.innerText || "")

instead of

jQuery(a).text()

In the previous expression speeds it up considerably so try at your own risk. (see @John 's question)

show/hide this revision's text 1

What I ended up doing is (after some googling) :

jQuery.extend(
	jQuery.expr[':'], { 
		Contains : "jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())>=0" 
});

This will extend jquery to have a :Contains selector that is case insensitive, the :contains selector remains unchanged.