Answers for "jquery determine screen 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
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
3

jquery set width

$(".example").width("px");
Posted by: Guest on February-20-2020
0

get screen resolution jquery

window.screen.width
Posted by: Guest on April-08-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language