up vote 1 down vote favorite
share [g+] share [fb]

I have a table with a number of rows, I then want to highlight the rows that contain value x and then invert the selection.

So far I am able to select the rows that contains the filter value but inverting it is giving me problems.

First I am selecting the rows that match my search value and add a class name:

var rows = $("#table tbody tr td:nth-child(1):contains('" + searchValue + "')");
$(rows).parent().addClass('filtered');

Then I am trying to add a class name that doesn't have the 'filtered' class name, this is the line that I just cant get right:

$('#table tbody tr:not(.filtered)').addClass('hidden');   

The class hidden ends up on all rows.
Anyone got any ideas?

Thanks,
Martin

link|improve this question

69% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I tried it: http://jsfiddle.net/eYRWj/ it doesn't. It works as expected.

Try console.log(rows) (with firebug installed and its console enabled), to see if they are really marked as .filtered, i.e. if the search succeeded.

link|improve this answer
Hi Aularon, you are right, it does work. I had another search value that wasn't matching anything and returning incorrect results, I have removed this and it is now doing what I want, thanks. – Martin Sep 4 '10 at 7:44
feedback

try with double quotes like this: $('#table tbody tr:not(".filtered")').addClass('hidden');

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.