Answers for "jquery detect the size of screen percentage"

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
1

detecting screen width in jquery

var windowsize = $(window).width();

$(window).resize(function() {
  var windowsize = $(window).width();
});

if (windowsize > 440) {
  //if the window is greater than 440px wide then turn on jScrollPane..
    $('#pane1').jScrollPane({
       scrollbarWidth:15, 
       scrollbarMargin:52
    });
}
Posted by: Guest on November-22-2020

Code answers related to "jquery detect the size of screen percentage"

Code answers related to "Javascript"

Browse Popular Code Answers by Language