How can I determine the height of a horizontal scrollbar, or the width of a vertical one, in JavaScript?
This should do the trick, no?
function getScrollbarWidth() { return (window.innerWidth - document.documentElement.clientWidth); }