たまにslideToggleを使う時に毎回調べてるのでメモ。
解決方法は「.stop()」を追記するだけ!!
<script type="text/javascript">
$(document).ready(function(){
$('ul li.nav01').hover(function(){
$(this).children('ul').stop().slideToggle();
});
});
</script>
【参考サイト】
jQueryのhoverイベントで 狂ったようにアニメーションするのを止める方法 | LogicA - jQueryだいすきフリーランサーのブログ –






