Hello,
I'm building a website, and the drop-down menu system will not work in Internet Explorer.
I have a rough version online for testing purposes, here is a link to it: Ryoku Seikido - Home
Any ideas?
| SitePoint Sponsor |
Hello,
I'm building a website, and the drop-down menu system will not work in Internet Explorer.
I have a rough version online for testing purposes, here is a link to it: Ryoku Seikido - Home
Any ideas?


The IE error occurs when attempting to set the top style.
because 'px' is an invalid argument. It should be a number followed by px, for example:Code:c.style.position = "absolute"; c.style.top = 'px'; c.style.left = 'px'; c.style.visibility = "visible";
Code:c.style.top = top + 'px';
Programming Group Advisor
Reference: JavaScript, Quirksmode Validate: HTML Validation, JSLint
Car is to Carpet as Java is to JavaScript
Bookmarks