PDA

View Full Version : CSS + JavaScripting for drop-down menu using <li>


LinuxGold
03-02-2004, 07:41 PM
Is it possible to write a javascript that enforces the <ul><li> behavior in IE to act the same way as more CSS compliant browsers when designing a drop down menu with more than 1 levels i.e.

<ul>
<li>MenuOne
<ul>
<li>OneSubMenuOne</li>
<li>OneSubMenuTwo
<ul>
<li>SMTwoA</li>
<li>SMTwoB
<ul>
<li>SMTwoB2</li>
</ul>
</ul>
</ul>

and so on...
Then inverts the properties to another side when it hits the right side of browser window.


Is it possible?

brothercake
03-02-2004, 09:16 PM
Yes it's possible. What actually is the problem you're having?