Created
March 15, 2021 10:02
-
-
Save IgorGavrilenko/28ffa2d211fdd3200567eda9c5781648 to your computer and use it in GitHub Desktop.
скролл (появление гор. скролла)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.fn.hasScrollBar = function() { | |
return this.get(0).scrollWidth > this.width(); | |
} | |
function elWrapScroll() { | |
var $elWrap = $('.el-wrap'); | |
$elWrap.each(function () { | |
if ($(this).hasScrollBar()) { | |
$(this).addClass('is-scroll'); | |
} else { | |
$(this).removeClass('is-scroll'); | |
} | |
}); | |
}; | |
elWrapScroll(); | |
$(document).change(function () { | |
elWrapScroll(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment