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?
<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?