When viewing my page in Netscape 4.7 (and I'm assuming anything prior), I noticed that my onLoad isn't working. It calls a function that initializes the navigation on my page, like so:
<body ... ... ... ... onLoad="start_nav();">
The things that are supposed to happen inside start_nav() never happen, so this is why I say it's not "working". No errors, but no functionally-correctness.
If I put commands in there that 4.7 doesn't understand (document.layername.style.visibility="hidden"
, it tells me that there's an error on the page, so I know it's aware of the function and compiled or syntax-checked it (or whatever you call what it does as the page loads).
IE6, NS7, Mozilla, Opera; all are fine. NS4.7 just isn't having the onLoad thing. Searching the web, I came across a suggestion to put a script tag later in the page to call that function, like so:
<script language="Javascript">start_nav();</script>
...but that, too, fails. Again, no errors, but it's just not starting my navigation. And tips or tricks to get this thing going?
<body ... ... ... ... onLoad="start_nav();">
The things that are supposed to happen inside start_nav() never happen, so this is why I say it's not "working". No errors, but no functionally-correctness.
If I put commands in there that 4.7 doesn't understand (document.layername.style.visibility="hidden"
IE6, NS7, Mozilla, Opera; all are fine. NS4.7 just isn't having the onLoad thing. Searching the web, I came across a suggestion to put a script tag later in the page to call that function, like so:
<script language="Javascript">start_nav();</script>
...but that, too, fails. Again, no errors, but it's just not starting my navigation. And tips or tricks to get this thing going?