Skip to content

Instantly share code, notes, and snippets.

@hikarock
Last active August 29, 2015 14:14
Show Gist options
  • Save hikarock/947bfef62ee4f1284aa6 to your computer and use it in GitHub Desktop.
Save hikarock/947bfef62ee4f1284aa6 to your computer and use it in GitHub Desktop.
モーダルの背景のスクロールを抑制する
$(window).on('touchmove.noScroll', function(evt) {
if ($(evt.target).hasClass('modal-class-name')) {
return;
}
evt.preventDefault();
})
@hikarock
Copy link
Author

解除するとき

$(window).off('.noScroll');

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment