I have sort of a general question. Is it against HTML standards to link a table?
example:
<a href="page.php">
<table>
<tr>
<td>
table text
</td>
</tr>
</table
</a>
Linking a table will work just fine in some browsers, but I've had problems with IE 6 on windows 98, and Firefox on mac os 10.2. IE just wouldn't work at all, Firefox was very sporadic, working sometimes and not others, with no detectable pattern. I was using Javascript in the link but it didn't seem to change when I took the Javascript out.
I'm creating a composite image from many images and using a table to hold them together. I would be nice to just link the table rather than linking all 9 images.
Thanks in advance for your help!
Jonathan
example:
<a href="page.php">
<table>
<tr>
<td>
table text
</td>
</tr>
</table
</a>
Linking a table will work just fine in some browsers, but I've had problems with IE 6 on windows 98, and Firefox on mac os 10.2. IE just wouldn't work at all, Firefox was very sporadic, working sometimes and not others, with no detectable pattern. I was using Javascript in the link but it didn't seem to change when I took the Javascript out.
I'm creating a composite image from many images and using a table to hold them together. I would be nice to just link the table rather than linking all 9 images.
Thanks in advance for your help!
Jonathan