var scrolling = true;
$(window).scroll(function(){
if (scrolling) {
console.log(123123123)
scrolling = false
}
})
$.fn.scrollEnd = function(callback, timeout) {
$(this).scroll(function(){
var $this = $(this);
if ($this.data('scrollTimeout')) {
clearTimeout($this.data('scrollTimeout'));
}
$this.data('scrollTimeout', setTimeout(callback,timeout));
});
};
$(window).scrollEnd(function(){
scrolling = true
}, 300);
.sale_opt {
height: 100%; // вы это не задали просто)
display: flex;
justify-content: center;
}