Skip to content

Instantly share code, notes, and snippets.

@gatespace
Created May 10, 2017 09:23
Show Gist options
  • Save gatespace/bb7a091d54addf20032503e5db5ebe9b to your computer and use it in GitHub Desktop.
Save gatespace/bb7a091d54addf20032503e5db5ebe9b to your computer and use it in GitHub Desktop.
とにかく右クリックを禁止したい(コンテキストメニューを出さない) ref: http://qiita.com/gatespace/items/1ac927164533b29f1dcc
<script>
jQuery(function($){
$(document).on('contextmenu',function(){ return false; });
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment