Answers for "window screen size jquery"

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
8

get the size of the browser jquery

$(window).height();
$(window).width();
Posted by: Guest on March-18-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language