Answers for "js if window width"

10

jquery check if screen size

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

JS get viewport width

//getting the viewport dimensions
var width= Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
var height = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
Posted by: Guest on July-31-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language