check screen width jquery code example
Example 1: jquery check if screen size
if ($(window).width() < 960) {
alert('Less than 960');
}
else {
alert('More than 960');
}
Example 2: detecting screen width in jquery
var windowsize = $(window).width();
$(window).resize(function() {
var windowsize = $(window).width();
});
if (windowsize > 440) {
$('#pane1').jScrollPane({
scrollbarWidth:15,
scrollbarMargin:52
});
}
Example 3: jquery if screen size
$(document).ready(function() {
if($(window).width() >= 1024) {
$('a.expand').click();
}
});