Skip to content

Instantly share code, notes, and snippets.

@ilguzin
Created October 15, 2014 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilguzin/f0cbc07b8ed6b9e27bb0 to your computer and use it in GitHub Desktop.
Save ilguzin/f0cbc07b8ed6b9e27bb0 to your computer and use it in GitHub Desktop.
Deny copy paste JS
<script type="text/javascript">
document.ondragstart = noselect;
document.onselectstart = noselect;
document.oncontextmenu = noselect;
function noselect() {return false;}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment