window 네이티브 이벤트에는 scroll stop 이벤트가 없다.
아래와 같은 코드를 추가하면 scrollStopped
확장이벤트를 사용할 수 있다.
$.fn.scrollStopped = function(callback) {
var _this = this, $this = $(_this);
$this.scroll(function(event) {
clearTimeout($this.data('scrollTimeout'));
$this.data('scrollTimeout', setTimeout(callback.bind(_this), 250, event));
});
};