Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IgorGavrilenko/28ffa2d211fdd3200567eda9c5781648 to your computer and use it in GitHub Desktop.
Save IgorGavrilenko/28ffa2d211fdd3200567eda9c5781648 to your computer and use it in GitHub Desktop.
скролл (появление гор. скролла)
$.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