Javascript:
The width of the visible area of the web page: document.body.clientWidth
The height of the visible area of the web page: document.body.clientHeight
The width of the visible area of the web page: document.body.offsetWidth (including the width of the edge)
The height of the visible area of the web page: document.body.offsetHeight (including the height of the edge)
The full text width of the web page body: document.body.scrollWidth
The full text height of the web page body: document.body.scrollHeight
The web page is scrolled High: document.body.scrollTop
The left side of the web page being scrolled: document.body.scrollLeft
The main body of the web page: window.screenTop
The left side of the main body of the web page: window.screenLeft
Screen resolution The height of the screen: window.screen.height
The width of the screen resolution: window.screen.width
The height of the available work area of the screen: window.screen.availHeight
The width of the available work area of the screen: window.screen.availWidth
JQuery: