7 lines
309 B
JavaScript
7 lines
309 B
JavaScript
|
|
var scrollBarWidth = getScrollBarWidth();
|
||
|
|
function getScrollBarWidth() {
|
||
|
|
let $outer = $('<div>').css({visibility: 'hidden', width: 100, overflow: 'scroll'}).appendTo('body'),
|
||
|
|
widthWithScroll = $('<div>').css({width: '100%'}).appendTo($outer).outerWidth();
|
||
|
|
$outer.remove();
|
||
|
|
return 100 - widthWithScroll;
|
||
|
|
}
|