I’m trying to implement functionality which when a link is clicked the corresponding anchor table row is effectively blanked out and the link disabled.
Is this possible using jQuery?
An example of one of the table rows would be:-
<tr class="bcell">
<th scope="row"><a title="bla" class="addlink" id="a_205">Adrian Apple</a></th>
<td>name</td>
<td class="bcell">
<span>0 / 0</span>
</td>
<td>jt 76 99 44 D</td>
<td>12122121212121</td>
</tr>
So if the anchor is clicked, the row will be blanked out.
This snippet will be self-explaining: