KJ Saxena
KJ Saxena

Reputation: 21848

To find out if a div has a scrollbar

If a div is set as overflow:auto, how can I find out (using plain JS) if a scrollbar (Vertical / Horizontal) has been rendered?

Upvotes: 39

Views: 28800

Answers (1)

rahul
rahul

Reputation: 187110

Check if clientHeight is smaller than scrollHeight.

Upvotes: 66

Related Questions