I've been looking at jquery drop-down plugins. None of them function the way I'd like.
I need to write a simple script that's essentially a drop-down menu.
There's a simple series of li w/ unique ids that match a class of a div (not a child or parent). I'd like the sub-menu to slide down on hover of the main-menu li.
So, the HTML would look like:
<ul>
<li id="number1"><a href="#">Link</a></li>
<li id="number2"><a href="#">Link</a></li>
</ul>
<div class="number1">
Div stuff...
</div>
<div class="number2">
More stuff...
</div>
I'm having a little trouble, and I'd really appreciate the help!