Search code examples
jqueryhtmlbrowserscrollbars

How to know if the scrollbars has appeared in browser (jQuery)?


I need to know, whether a vertical scrollbar has appeared or not in browser window. Is it possible using jQuery or any other way?


Solution

  • Like this:

    if (document.documentElement.scrollHeight === document.documentElement.clientHeight) {
        //There is no vertical scrollbar
    }
    

    This doesn't work in IE