Reputation: 21848
If a div is set as overflow:auto, how can I find out (using plain JS) if a scrollbar (Vertical / Horizontal) has been rendered?
overflow:auto
Upvotes: 39
Views: 28800
Reputation: 187110
Check if clientHeight is smaller than scrollHeight.
Upvotes: 66