Created
February 29, 2016 21:28
-
-
Save UVLabs/491cf814b409703a507e to your computer and use it in GitHub Desktop.
From http://stackoverflow.com/questions/737022/how-do-i-disable-right-click-on-my-web-page
http://stackoverflow.com/questions/8365272/disable-copying-on-a-website Prevent right clicking / copying on pages
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
<body oncontextmenu = "return false"></body> | |
or | |
<body oncopy = "return false"></body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment