リサイズ完了後のイベント取得


リサイズ完了後のイベント取得

var timer = false;

$(window).resize(function()
{

if (timer !== false)
{
clearTimeout(timer);
}

timer = setTimeout(function()
{
               何かしらの処理
}, 200);
});

コメント