Hello,
Here is sample code:
<td class="rsp2" align="center" rowspan="2">
34 Days<br />
<a id="r2" href="javascript: void(0);" title="2">11/03/2008</a>
</td>
When I click on the date above I want to be able to change the rowSpan
on the td that surrounds it. I cannot seem to get it right.
Here is the latest thing I tried:
$("#r"+id).prev("td").attr("rowSpan","1");
I also tried:
$("#r"+id).prev(".rsp2 td").attr("rowSpan","1");
Thanks!
Randy