Menu

STEP 2 - マウスホバーで開閉する仕組みを作る

:not(:animate)セレクタで、アニメーションの繰り返しを防止しています。

jQuery Code

$(function(){
	$("#dropdown ul").hide();
	$("#dropdown li").hover(function(){
		$("ul:not(:animated)", this).slideDown("fast");
	},
	function(){
		$("ul", this).slideUp("fast");
	});
});

jQuery.com 公式ドキュメント

Chapter 14