Hi there, hopefully a quick question:

I'm setting up a filter box that, on key up, will show/hide rows in a
table based on a certain columns text() value. What I'd like to do is
the following:

$('tablename' tr td:contains('filtertext').parent().show();

as an example. However my understanding is that the :contains filter
is case sensitive. If I have the following table:

<table>
   <tr><td>Joe</td></tr>
   <tr><td>Tedd</td></tr>
</table>

and the user is trying to filter by a lower case j nothing would
match. Is there a workaround to making the :contains filter case
insensitive? Thank you.

Reply via email to