Answers for "capture window width in javascript"

9

javascript screen size

var w = window.innerWidth;
var h = window.innerHeight;
Posted by: Guest on March-13-2021
1

js window dimensions

// better than using window.innerWidth / window.innerHeight 
// because of scrollbars
const client = {
      width: document.documentElement.clientWidth,
      height: document.documentElement.clientHeight
}
Posted by: Guest on November-09-2020

Code answers related to "capture window width in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language