Skip to content

Instantly share code, notes, and snippets.

@mmousawy
Last active March 16, 2019 00:31
Show Gist options
  • Save mmousawy/b10ceeb97c31dcd8a308d44bbb3d369d to your computer and use it in GitHub Desktop.
Save mmousawy/b10ceeb97c31dcd8a308d44bbb3d369d to your computer and use it in GitHub Desktop.
Get scrollbar width JavaScript
// Easy immediately invoked function expression (IIFE) to find the current scrollbar width in browser
// Returns a number of scrollbar width in pixels
const scrollBarWidth = (() => {
const a = document.createElement('div');
document.body.appendChild(a).style.overflowY = 'scroll';
const w = a.offsetWidth - a.clientWidth;
a.remove();
return w;
})();
console.log(scrollBarWidth);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment