Skip to content

Instantly share code, notes, and snippets.

@Youka
Last active December 12, 2017 10:37
Show Gist options
  • Select an option

  • Save Youka/4b6cb42fd58a6f979974 to your computer and use it in GitHub Desktop.

Select an option

Save Youka/4b6cb42fd58a6f979974 to your computer and use it in GitHub Desktop.
Get browser scrollbar width/height
function getScrollbarSize() {
var hiddenScroll = jQuery('<div />', {
css: {
visibility: 'hidden',
width: 100,
'overflow-y': 'scroll'
}
}).appendTo('body'),
hiddenScrollContentWidth = jQuery("<div />").css('width', '100%').appendTo(hiddenScroll).outerWidth();
hiddenScroll.remove();
return 100 - hiddenScrollContentWidth;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment