Created
May 10, 2017 09:23
-
-
Save gatespace/bb7a091d54addf20032503e5db5ebe9b to your computer and use it in GitHub Desktop.
とにかく右クリックを禁止したい(コンテキストメニューを出さない) ref: http://qiita.com/gatespace/items/1ac927164533b29f1dcc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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