Hi Shogobunky,

The moreSelectors plugin adds a :Contains() selector which is case
insensitive (notice the upper case "C").
(http://plugins.jquery.com/project/moreSelectors)

It is probably overkill to include an entire plugin for that one
feature however, so you could just include the one selector definition
in your code. Something like this...

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

George


On Feb 5, 7:10 pm, Shogobunky <[EMAIL PROTECTED]> wrote:
> Is there a workaround to making the :contains filter case
> insensitive? Thank you.

Reply via email to