I am not able to achieve something that seems so simple. Not sure where I am going wrong. Please advise. Goal is to highlight a table row is the checkbox corresponding to it is selected. I have referred to several examples that talks about using .closest('tr') or .parent('tr') to get this working but for some reasons in my case - its over achieving i.e. it highlights all the rows rather than just the one that is selected.

My HTML

<tr class="EvenRowClass">
 <td class="ColClass">
   <div class="wrapClass" ">
 <span class="tableCol" style="background: someimage.png") </span>
 <span class="tableCol" style="background: someimage.png") </span>
 <input id="Check1" class="selectCheck" type="checkbox"
      onclick="highlightRow(this,Check1); return false;" value="Check1">
</div>
 </td>
 <td>SomeCode</td>
 <td>SomeCode</td>
 <td>SomeCode</td>

Assume that there is another block of such code with a and unique ids for each check box sequential)

My Javascript fucntion that gets called on click

    function highlightRow(checkbox, id)
{
   $("tr:parent").toggleClass("highlight", checkbox.checked);   
}   

The javascript above selects all the in the table and rest of the page regardless of whether they are checkd or not and applies the highlight class to it. I tried several other version using checkbox selector , .closest('tr'), .parent('tr') but none of them have worked for me.

The last few mentioned are only better in the sense they affect the only within the table and not others on the page.

Please advise. I have scratched my head over this enough that it started hurting now. I am Thanks in advance.

link|improve this question

78% accept rate
feedback

2 Answers

up vote 0 down vote accepted
function highlightRow( checkbox, id ) {
    $( checkbox ).closest( 'tr' ).toggleClass( 'highlight', checkbox.checked );  
};
link|improve this answer
Golden. Thanks a lot. This worked. But I got a question ? Why wouldn't the same thing work if I just the ID as selector as in.. 'function highlightRow(checkbox, id) { var id = id; $(#id).parents("tr").toggleClass("highlight", checkbox.checked); }' – user1006072 Nov 16 '11 at 5:27
You'd have to do: $( '#' + id ).. You could also not pass in either checkbox or id and do $( this ). – ThinkingStiff Nov 16 '11 at 6:02
feedback

Try this :

   function highlightRow(checkbox, id)
{
   $(checkbox).parents("tr").toggleClass("highlight", checkbox.checked);   
}   
link|improve this answer
Golden. But I got a question ? Why wouldn't the same thing work if I just the ID as selector as in.. function highlightRow(checkbox, id) { var id = id; $(#id).parents("tr").toggleClass("highlight", checkbox.checked); } – user1006072 Nov 16 '11 at 5:22
feedback

Your Answer

 
or
required, but never shown

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