Page is a not externally linkable
mousemoves - 5:04 am on Dec 21, 2000 (gmt 0)
Navigator 4+ destroys positioned elements when the window is resized. I don't know what Nav 6 does. Anyway, the solution that i found in "Dynamic HTML The Definitive Reference" by O'Reilly is: function handleResize(){ if (isNav){ for some reason my similiar solution to the above, i always put in semi colons and i didn't use their variable isNav for browser detection, did not work for nav 4.08, so today i did the following and now it works. <html><head><title>foo</title> <script language="JavaScript1.1"> function capture(){ function handleResize(){ onresize = capture; the scripts automatically reload the browser when the browser window is resized. Thus, by reloading the browser the positioning returns to where it is suppose to be. if you know all about this, i know you are bored but if you don't, i hope this saves your time and you have lots of fun with positioning!
This is a common problem that is terrible if you don't know how to fix it or why it is happening. i think it took me 48 hours to solve for nav. 4.7 by finally posting at netscape. the response was buy the book listed below and look on page 93 so i did.
location.reload()
return false
}
window.captureEvents(Event.RESIZE)
window.onresize = handleResize
}
if (navigator.appName == "Netscape"){
window.captureEvents(Event.RESIZE);
window.onresize = handleResize;}
}
location.reload();
return false;
}
</script>
</head>