Remove a barra de rolagem temporariamente via Jquery
//REMOVE A BARRA DE ROLAGEM
jQuery(“hmtl, body”).css({
‘height’ : jQuery(window).height() + ‘px’,
‘width’ : jQuery(window).width() + ‘px’,
‘overflow’ : ‘hidden’
});
//INCLUI A BARRA DE ROLAGEM
jQuery(“hmtl, body”).css({
‘height’ : ‘auto’,
‘width’ : ‘auto’,
‘overflow’ : ‘auto’
});