Skip to content

Instantly share code, notes, and snippets.

@dustinpoissant
Last active November 19, 2016 21:22
Show Gist options
  • Save dustinpoissant/5ef1e7827375d740be2b8a17738bfe78 to your computer and use it in GitHub Desktop.
Save dustinpoissant/5ef1e7827375d740be2b8a17738bfe78 to your computer and use it in GitHub Desktop.
Get Scrollbar Width
function getScrollbarWidth () {
var inner = document.createElement('p');
inner.style.width = "100%";
inner.style.height = "200px";
var outer = document.createElement('div');
outer.style.position = "absolute";
outer.style.top = "0px";
outer.style.left = "0px";
outer.style.visibility = "hidden";
outer.style.width = "200px";
outer.style.height = "150px";
outer.style.overflow = "hidden";
outer.appendChild(inner);
document.body.appendChild(outer);
var w1 = inner.offsetWidth;
outer.style.overflow = 'scroll';
var w2 = inner.offsetWidth;
if (w1 == w2) w2 = outer.clientWidth;
document.body.removeChild(outer);
return (w1 - w2);
};
function getScrollbarWidth(){var a=document.createElement("p");a.style.width="100%",a.style.height="200px";var b=document.createElement("div");b.style.position="absolute",b.style.top="0px",b.style.left="0px",b.style.visibility="hidden",b.style.width="200px",b.style.height="150px",b.style.overflow="hidden",b.appendChild(a),document.body.appendChild(b);var c=a.offsetWidth;b.style.overflow="scroll";var d=a.offsetWidth;return c==d&&(d=b.clientWidth),document.body.removeChild(b),c-d}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment