hello, i have a lot of same tables:
<table>
<tr class="class">
<td>some text</td>
<td><a href="">Click here</a></td>
</tr>
</table>
<table>
<tr class="class">
<td>some text</td>
<td><a href="">Click here</a></td>
</tr>
</table>
...
when i click to link, i whould like to change class
name of <tr> element, where i clicked. i don't know
how can i do that. i try something like that:
<a href="" OnClick="$(this.tr).removeClass('class'); $(this.tr).removeClass('_class');">Click here</a>
but it doesn't work... can anybody help me please? :-)