I have 2 bookmarks on a page, one moves the view from top to bottom, the other moves the view from bottom to top.
On my desktop dev machine, both bookmarks work as expected but on my touch screen phone, only the bottom to top link works.
This is a much simplified version of the original page but still shows the same problem.
Can anyone suggest what the problem may be?
Keith
On my desktop dev machine, both bookmarks work as expected but on my touch screen phone, only the bottom to top link works.
This is a much simplified version of the original page but still shows the same problem.
Can anyone suggest what the problem may be?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
<html>
<head>
<title>Bookmark test</title>
</head>
<body>
<div style='font-size:50px;'>
<a href='#bottom'>Bottom</a>
<a name='#top'>
Top
</div>
<div style='height:3000px;'>
BODY 100px high
</div>
<div style='font-size:50px;'>
Bottom
<a href='#top'>Top</a>
<a name='#bottom'>
</div>
</body>
</html>
Keith