You are here: irt.org | FAQ | JavaScript | Link | Q594 [ previous next ]
Try:
<html>
<head>
<script language="JavaScript"><!--
function relocate(hash) {
if (location.hash != hash) {
if (document.images)
location.replace('http://www.somewhere.com/page.htm#' + hash);
else
location.href = 'http://www.somewhere.com/page.htm#' + hash;
}
}
//--></script>
</head>
<body onLoad="relocate('myAnchor')">
....
<a name="myAnchor"></a>
</body>
</html>