“JQuery Verifique se o tamanho da tela” Respostas de código

JQuery Verifique se o tamanho da tela

if ($(window).width() < 960) {
   alert('Less than 960');
}
else {
   alert('More than 960');
}
Alive Albatross

Detectando a largura da tela em 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
    });
}
Modern Meerkat

jQuery se tamanho da tela

$(document).ready(function() {
    if($(window).width() >= 1024) {
        $('a.expand').click();
    }
});
Condemned Crayfish

Respostas semelhantes a “JQuery Verifique se o tamanho da tela”

Perguntas semelhantes a “JQuery Verifique se o tamanho da tela”

Mais respostas relacionadas para “JQuery Verifique se o tamanho da tela” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código