javascript - How to get the dimensions of the scroll bars? -


possible duplicate:
javascript : browser's scrollbar sizes

i have html table contains lots of rows , columns. therefore, has vertical , horizontal scroll bars.

how can dimensions in pixels of these scroll bars in javascript/jquerys ?

ben alman has nice scrollbarwidth plugin works nicely.

var content = $('#content').css( 'width', 'auto' ),   container = content.parent();  if ( content.height() > container.height() ) {   content.width( content.width() - $.scrollbarwidth() ); } 

Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -