if window width javascript code example
Example 1: jquery check if screen size
if ($(window).width() < 960) {
alert('Less than 960');
}
else {
alert('More than 960');
}
Example 2: get window size javascript
const window {
width: window.innerWidth,
height: window.innerHeight
}