Skip to content

Instantly share code, notes, and snippets.

@ingowennemaring
Created July 31, 2013 12:26
Show Gist options
  • Save ingowennemaring/6121558 to your computer and use it in GitHub Desktop.
Save ingowennemaring/6121558 to your computer and use it in GitHub Desktop.
Get the width of the scrollbar
function getScrollbarWidth() {
var scrollbarWidth,
scrollDiv = $('<div />')
.css({
width: '100%',
height: '100%',
overflow: 'scroll',
position: 'absolute',
top: '-9999px'
})
.appendTo('body');
scrollbarWidth = scrollDiv.get(0).offsetWidth - scrollDiv.get(0).clientWidth;
scrollDiv.remove();
return scrollbarWidth;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment