Sorry for my english,
I have this html code:
<tr>
<td><input type="checkbox" class="chk" /></td>
<td><div class="disabled">text to hide 1</div></td>
<td><div class="disabled">text to hide 2</div></td>
</tr>
next, I have a jQuery line to hide all class="disabled" items :
$("div.disabled").hide() ;
So, I want to show disabled divs when I click the checkbox in the same row (tr) I have tried something like
$("input.chk").click(function(){
$(this).parent().parent().(".disabled").show();
}) ;
that doesn't work :(
please help
Thanks in advice :)