if screen size js code example
Example 1: jquery check if screen size
if ($(window).width() < 960) {
alert('Less than 960');
}
else {
alert('More than 960');
}
Example 2: js know size of screen
alert("Your screen resolution is: " + screen.width + "x" + screen.height)