Topic awaiting preservation: Netscape and Drop Down Menu's (Page 1 of 1) |
|
---|---|
Obsessive-Compulsive (I) Inmate From: |
posted 10-13-2003 17:51
Hello everyone, |
Paranoid (IV) Inmate From: Northumberland, England |
posted 10-14-2003 19:17
hmm, I've only looked quickly but the problem seems to be something to do with the onmouseover events on tables - My suggestion would be to ditch the whole table thing ( tables are just so passe ) and follow the new method of nested lists - do a google search on 'nested list menus' or something similar and you are sure to find numerous articles on it that can better explain it than I can. Or you could just give it a shot, it's really not that different to how your current menu works. |
Obsessive-Compulsive (I) Inmate From: |
posted 10-14-2003 20:49
Okay, thank you smonkey. I will take look up some more information on that subject. I have view some information about it once before, thanks for your reply. |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 10-14-2003 20:53
Netscape/Mozilla doesn't support document.all. Rather, you should be using document.getElementById (in the same way that you're using document.all right now). Your code is pretty well written, and I think that with that one change you'll be well on the way to making it work in Mozilla/Netscape. |
Paranoid (IV) Inmate From: Northumberland, England |
posted 10-14-2003 21:01
Slime - I tried changing the document.all to document.getElementById and it worked ok in IE but still failed in moz - I couldn't see what else was wrong (altho maybe it was just a moz cache problem). |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 10-14-2003 21:10
One thing to check is Tools -> Web Development -> JavaScript Console, and see if any errors appear on it when you use the menu. |
Obsessive-Compulsive (I) Inmate From: |
posted 10-17-2003 23:00
Thanks guys, |