jQuery Event Delay コード (function($){ $.fn.eventDelay = function(delay, triger, cancel, callback) { return this.each(function() { var target = $(this); var tid; target.bind(triger, function(){ tid = setTimeout(callback, delay * 1000) }) target.bind(cancel, function(){ clearTimeout(tid) }) }); } })(jQuery) 使用例 マウスオーバーイベント $('#hoge').eventDelay(2, 'mouseover', 'mouseout', function(){ alert('hoge') })