Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I determine the height of a horizontal scrollbar, or the width of a vertical one in javascript ?

share|improve this question
2  
Here is a snippet from the author of the JQuery Dimension plugin. github.com/brandonaaron/jquery-getscrollbarwidth/blob/master/… maybe late to give this solution, but it seems a better one to me, IMO. – Yanick Rochon Aug 9 '10 at 15:17

3 Answers

From Alexandre Gomes Blog I have not tried it. Let me know if it works for you.

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);
};
share|improve this answer
The idea is genius, I'm definitely making a MooTools class based on this. – rpflo Jun 12 '09 at 14:40
Yeah I got the same google result. :) I'm trying and keep you informed. – subtenante Jun 12 '09 at 14:50
3  
Gives me 16 pixels, but counting on my screen I get 17. – subtenante Jun 12 '09 at 15:10
if you change your theme to one with different sized scroll bars what is the deviance in calculated to actual? – Matthew Vines Jun 12 '09 at 16:35
1  
see here for cross reference : stackoverflow.com/questions/3417139/… – Yanick Rochon Aug 5 '10 at 18:42
show 3 more comments

This is only script I've found, which is working in webkit browsers ... :)

$.scrollbarWidth = function() {
  var parent, child, width;

  if(width===undefined) {
    parent = $('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo('body');
    child=parent.children();
    width=child.innerWidth()-child.height(99).innerWidth();
    parent.remove();
  }

 return width;
};

Minimized version:

$.scrollbarWidth=function(){var a,b,c;if(c===undefined){a=$('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo('body');b=a.children();c=b.innerWidth()-b.height(99).innerWidth();a.remove()}return c};

And you have to call it when document is ready ... so

$(function(){ console.log($.scrollbarWidth()); });

Tested 2012-03-28 on Windows 7 in latest FF, Chrome, IE & Safari and 100% working.

source: http://benalman.com/projects/jquery-misc-plugins/#scrollbarwidth

share|improve this answer
This one worked for me, the #1 answer didn't work in Chrome. – Pepper Feb 6 at 15:34
Returns different values with different page zoom. Win7, Opera, FF. – Kolyunya Mar 7 at 9:00
window.scrollBarWidth = function() {
  document.body.style.overflow = 'hidden'; 
  var width = document.body.clientWidth;
  document.body.style.overflow = 'scroll'; 
  width -= document.body.clientWidth; 
  if(!width) width = document.body.offsetWidth - document.body.clientWidth;
  document.body.style.overflow = ''; 
  return width; 
}
share|improve this answer
Works as well but shorter code. Thanks. – subtenante Jun 13 '09 at 12:31
2  
Doesn't work if the body has a fixed width. – Pumbaa80 Aug 9 '10 at 15:47
That's clever... – Zo72 Mar 26 at 22:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.