javascript get window height size code example
Example 1: get the size of the browser jquery
$(window).height();
$(window).width();
Example 2: how to get the height of window in javascript
//get screen height of the device by using
window.innerHeight
//get screen width of the device by using
window.innerWidth
Example 3: get screen width javascript
window.screen.width
//or just
screen.width