Skip to content

Instantly share code, notes, and snippets.

@okuden-labo
Last active August 29, 2015 14:17
Show Gist options
  • Save okuden-labo/ffced92db69eb276d82c to your computer and use it in GitHub Desktop.
Save okuden-labo/ffced92db69eb276d82c to your computer and use it in GitHub Desktop.
jQueryで右クリックを無効にする方法
/*コンテキストメニューが非表示に*/
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment