Live Detect Browser Size - jQuery / JavaScript

前端 未结 6 1341
梦毁少年i
梦毁少年i 2020-12-02 10:46

Is there a jQuery plugin or a way using straight JavaScript to detect browser size.

I\'d prefer it is the results were \'live\', so if the width or height changes, s

6条回答
  •  再見小時候
    2020-12-02 11:17

    This should return the visible area:

    document.body.offsetWidth
    document.body.offsetHeight
    

    I guess this is always equal to the browser size?

提交回复
热议问题