Skip to content

Instantly share code, notes, and snippets.

@FerPerales
Created November 5, 2014 17:09
Show Gist options
  • Save FerPerales/007ea75433a57bc2f961 to your computer and use it in GitHub Desktop.
Save FerPerales/007ea75433a57bc2f961 to your computer and use it in GitHub Desktop.
$('.modal')
.on('shown', function(){
$('body').css({overflow: 'hidden'});
})
.on('hidden', function(){
$('body').css({overflow: ''});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment