How can I check if a scrollbar is visible?

后端 未结 19 2898
情话喂你
情话喂你 2020-11-22 14:39

Is it possible to check the overflow:auto of a div?

For example:

HTML

19条回答
  •  时光说笑
    2020-11-22 15:40

    Maybe a more simple solution.

    if ($(document).height() > $(window).height()) {
        // scrollbar
    }
    

提交回复
热议问题