Jumping to anchors in table cells
Interesting IE observation:
You can’t jump to anchors in otherwise empty table cells.
This works:
-
<tr>
-
<td> <a name="myanchor"></a></td>
-
</tr>
This doesn’t:
-
<tr>
-
<td><a name="myanchor"></a></td>
-
</tr>
I know I’m doing terrible things to my markup to even want to put an anchor in an empty table cell.. :)
Other people seem to have the same problem.
