Here is the source. This is a navigation . when the mouse over
"Menu1" , the items will show up.
It will work well in most case. But what if there are so many items
that will exceed the bottom of the client window.
The scrollbar will show up in the web browser .What I want is  to
add  a new item or something just upon the item exceed the bottom. And
when the mouse hover on it ,the items exceeded the bottom will move
up . Anyone can help me ?????
<div>
    <ul class="nav" >
    <li>
        <a href="#" >Menu1</a>
    <ul>
        <li>item1</li>
        <li>item1</li>
        <li>item1</li>
    </ul>
    </li>
      <li>
        <a href="#" >Menu2</a>
    <ul>
        <li>item1</li>
        <li>item1</li>
        <li>item1</li>
    </ul>
    </li>
 </div>

Reply via email to