drop right menu
Posted
by undef
on Stack Overflow
See other posts from Stack Overflow
or by undef
Published on 2009-11-12T22:40:03Z
Indexed on
2010/04/09
23:03 UTC
Read the original article
Hit count: 124
I'm looking for a drop-right menu, not dropdown. Based on list of lists, ex html
<ul>
<li> item1
<li> fold1 <ul><li> fold1it1 <li> fold1it2 </ul>
<li> item2
<li> fold2 <ul><li> fold2it1 <li> fold2it2 </ul>
</ul>
When you mousover fold1, it would expand to the right right (drop right)
item1
fold1 fold1it1 fold1it2 fold2it3
item2
fold2
I'm looking for really simple to understand css example, or some kind of jquery plugin Thanks
© Stack Overflow or respective owner