Answers for "check my screen width javascript"

13

javascript if screen width

if ($(window).width() < 960) {
   alert('Less than 960');
}
else {
   alert('More than 960');
}
Posted by: Guest on February-26-2020
2

get the size of the screen javascript

window.screen.height;
window.screen.width;
Posted by: Guest on March-18-2020

Code answers related to "check my screen width javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language