divに移動しようとすると、このスライダーをホバーさせようとしています。これをドロップダウンメニューに使用します。
http://jsfiddle.net/ANFRD/263/
<a href="#" id="toggleLink">Click Here</a>
<div class="toggledDiv">This is the content of the toggled div</div>
<div class="alwaysVisible">This is the content of the always visible div</div>
そして、JS
var toggleState = true;
$('#toggleLink').hover(function () {
if (toggleState) {
$('.toggledDiv').stop().animate({
height: 80
}, 500);
} else {
$('.toggledDiv').stop().animate({
height: 0
}, 500);
}
toggleState = !toggleState;
return false;
});