I know we get the screen size using screen.height and screen.width.
I am interested in knowing how to find the usable screen area using Javascript.
This is like screen height minus address bar height minus toolbar etc.
I know we get the screen size using screen.height and screen.width. I am interested
Share
For most browser you can read
window.innerWidthandwindow.innerHeight, for Internet Explorer itsdocument.documentElement.clientWidthanddocument.documentElement.clientHeight, I think…