Basic HTML Internal Link not working in IE8
Posted
by
Eamonn
on Stack Overflow
See other posts from Stack Overflow
or by Eamonn
Published on 2012-04-14T11:13:27Z
Indexed on
2012/04/14
11:29 UTC
Read the original article
Hit count: 206
html
|internal-link
This one has me scratching my head. I have a page with several internal links bringing the user down the page to further content. Beneath various sections there are further internal links bringing the user back to the top. This works fine in all browsers apart from IE8 (actual IE8 - not IE9 in IE8 mode) where they work go down, but not coming back up!
Examples:
<a href="page.php?v=35&u=admin-videos#a">A – General</a>
.... //travelling DOWN the page
<h3><strong>A – General<a name="a"></a></strong></h3>
<a name="top"></a>
.... //travelling back up
<a href="page.php?v=35&u=admin-videos#top">Back to top.</a>
I've tried filling the 'top' anchor with
but that hasn't changed it. Any ideas?
Actual use case: http://databizsolutions.ie/contents/page.php?v=35&u=admin-videos
© Stack Overflow or respective owner