ghurty Posted January 11, 2010 Share Posted January 11, 2010 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 Link to comment https://forums.phpfreaks.com/topic/188019-link-to-id-in-page-does-not-work-in-ie8-but-works-in-ie7-and-firefox/ Share on other sites More sharing options...
soycharliente Posted January 11, 2010 Share Posted January 11, 2010 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> Link to comment https://forums.phpfreaks.com/topic/188019-link-to-id-in-page-does-not-work-in-ie8-but-works-in-ie7-and-firefox/#findComment-992650 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.