How can I process the elements that are not currently selected. Ex. on my html file, I have
<table>
<tr><td> .... </tr></td>
<tr><td> .... </tr></td>
<tr><td> .... </tr></td>
<tr><td> .... </tr></td>
</table>
on js file, I have a click event and choose one of the row. During this event trigger, I'd like to process the other rows.
$("table tr").click(function(){
// process the unselected rows here such as change the background color...
});