jQuery Dropdown
Posted
by
Phil
on Stack Overflow
See other posts from Stack Overflow
or by Phil
Published on 2010-12-31T21:34:15Z
Indexed on
2010/12/31
21:54 UTC
Read the original article
Hit count: 242
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>
© Stack Overflow or respective owner