Answers for "js check display width"

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
3

js know size of screen

alert("Your screen resolution is: " + screen.width + "x" + screen.height)
Posted by: Guest on April-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language