Skip to content

Instantly share code, notes, and snippets.

@Venegrad
Last active April 4, 2019 15:23
Show Gist options
  • Save Venegrad/19cc78cc554ff1eeedc0deb1a2efdb2e to your computer and use it in GitHub Desktop.
Save Venegrad/19cc78cc554ff1eeedc0deb1a2efdb2e to your computer and use it in GitHub Desktop.
Get ScrollBarWidth jquery
function getScrollBarWidth(bool) {
if(bool == true) {
var $outer = $('<div>').css({visibility: 'hidden', width: 100, overflow: 'scroll'}).appendTo('body'),
widthWithScroll = $('<div>').css({width: '100%'}).appendTo($outer).outerWidth();
$outer.remove();
return 100 - widthWithScroll;
} else {
return 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment