jQuery Dropdown
- by Phil
I've been able to make a jQuery drop down, however, I can't make it stay expanded when one of the child links is rolled over.
Code:
<li>
<a onmouseover="$('.dropdown-1').slideDown('medium');" href="/hosting">Why Veoloo</a>
<ul class="dropdown-1">
<li onmouseout="$('.dropdown-1').slideUp('medium');"><a href="#">The Reasons (15)</a></li>
<li onmouseout="$('.dropdown-1').slideUp('medium');"><a href="#">Customer Testimonials</a></li>
<li onmouseout="$('.dropdown-1').slideUp('medium');"><a href="#">Our Support Scope</a></li>
</ul>
</li>