ccc

JQuery: Activar y desactivar el scroll

Para desactivarlo:
$('html, body').css({
    overflow: 'hidden',
    height: '100%'
});
Para activarlo:
$('html, body').css({
    overflow: 'auto',
    height: 'auto'
});

No hay comentarios:

Publicar un comentario