Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaScript, track window screen width

I have a function that tells what the current width of the user's screen is but when i resize window to width less than 1024 that function doesnt output width less than 1024

  function xxx(){
    var x = window.screen.Width
    console.log(x)
    }
    setInterval(xxx, 1000)

output:

1024

even if screen width less than 1024 how can i fix this without using @media requests?

already tried:

window.screen.innerwidth

like image 780
bald Avatar asked Dec 06 '25 17:12

bald


1 Answers

Like @YoussoufOumar said instead of using setInterval to get the user's screen width, use resize event to get the screen width whenever the screen resolution changes.

window.screen.width get only the user's screen width and it doesn't change according to the manual resizing of the browser

Instead window.innerWidth gets the browser width and it changes according to the manual resizing of the browser

function widthResizer(){
  var width = window.innerWidth
  console.log(width)
}

// Getting the width of the browser on load
widthResizer()

// Getting the width of the browser whenever the screen resolution changes.
window.addEventListener('resize', widthResizer)
like image 182
Kumara Avatar answered Dec 08 '25 07:12

Kumara



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!