Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Last active May 29, 2016 05:14
Show Gist options
  • Save nishinoshake/2a38b4f122884e652e98 to your computer and use it in GitHub Desktop.
Save nishinoshake/2a38b4f122884e652e98 to your computer and use it in GitHub Desktop.
JSでPCのスクロール禁止
$('body').on({'mousewheel': function(e) { return false; }});
$('body').off('mousewheel');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment