scroll-width
v0.4.0
Published
uses hightech javascript technology to discover your browsers scroll-bar width/height
Readme
scroll-width
Because not everyone hides the scrollbar on OSX ;) Tiny AMD module that will return you the browsers scrollbar width can be installed via bower, AMD is optional.
Installation
NPM
npm install scroll-width --saveyarn
yarn add scroll-widthBower
bower install scroll-width --saveAMD usage:
require(['scrollWidth'], function(scrollWidth){
alert("My scroll's width is " + scrollWidth + "px");
});without AMD:
alert("My scroll's width is " + window.scrollWidth + "px");