Answers for "how to get the resolution of a window in js"

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
1

get window resolution javascript

var clientWidth = document.documentElement.clientWidth;
 $("h2").text(clientWidth);
Posted by: Guest on July-23-2020

Code answers related to "how to get the resolution of a window in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language