Jump to content

link to id in page does not work in IE8 but works in IE7 and firefox.


ghurty

Recommended Posts

I am using the code:

<a href="#form"><img src="images/top03.jpg" height="97" width="800"></a>

to form a link to take you to:

<a id="form" name="form"><td width="29%"><img src="images/test.jpg" width="298" height="23" vspace="10" /></td></a>

 

 

This works in firefox and IE7. However, the link does nothing in IE8. How can I code it that it will work for everything?

 

 

Thakns

Try a proper HTML markup structure by placing the link tag INSIDE the table cell tag. It may be because of that.

 

<td width="29%">
<a id="form" name="form"><img src="images/test.jpg" width="298" height="23" vspace="10" /></a>
</td>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.