Forum Moderators: open
Netscape is nice enough to keep old versions of their browser available at: [home.netscape.com...]
You can even download just the Navigator browser as a stand-alone, without getting Messenger, Composer, etc.
The site has this idea to offer, which I found interesting:
Incidentally, developers who long for the bad old days can use getElementsByTagName to create their own document.all collection of sorts (this trick only works in NS6 and Mozilla):var all = document.getElementsByTagName("*");
That might be a quick fix for some of my legacy code.
I know these are nitty gritty details and its sorta long code but if anyone has any ideas I would reall appriciate it.
Thanks as always,
Jim
PS. Address is the same as before.
[conxiondesigns.com ]
line 197: window.element has no properties
This seems odd -- if I am reading your code correctly, line 197 occurs within an "else" section that begins "if(isNS6)". But just before that, you already had an "if(isNS4)" section, so I didn't expect the code to even hit line 197 when the browser is Netscape4.
Should that "if(isNS6)" be "else if(isNS6)"? Then line 197 would only kick in for non-Netscape browsers, which I think is what you are after.