2015年1月22日木曜日

jQuery.stop() について補足

jQuery.stopのjumpToEnd引数が便利すぎてやばい(JavaScript Advent Calendar 2010 5日目) | tech.kayac.com - KAYAC engineers' blog



jQuery.stop() について補足

$(function () {
    $('div').hover(function () {
        $(this).find('ul').stop(true, true).slideDown();
    }, function () {
        $(this).find('ul').stop(true, true).slideUp();
    });
});

0 件のコメント:

コメントを投稿