I’m using onClick in table rows as follows:
<tr onmouseover="this.style.cursor='pointer'" onclick="http://www.whatever.com/index.php?var={$foo1}">
I also have some needs to put a link in certain areas in this table row, i.e.
<td>Stuff Here</td>
<td>Stuff Here</td>
<td>Stuff Here</td>
<td><a href="specialLink.php?var={$foo2}">Here</a></td>
<td>Stuff Here</td>
The problem is, the “inner link” (specialLink.php) can’t be clicked, because the row link takes precedence. Do I have any options here?
Thanks
I ‘ll do that :