jQuery スライド

メモに

$(document).ready(function(){
  $('#navi > li').click(function(){
    // 引数には開閉する速度を指定します
    $(this).next().slideToggle('fast', function() {
      //コールバック関数の処理
    });
  });
});

Follow me!