Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Created September 30, 2014 10:50
Show Gist options
  • Save ShMcK/cd60d1537655bb679a32 to your computer and use it in GitHub Desktop.
Save ShMcK/cd60d1537655bb679a32 to your computer and use it in GitHub Desktop.
HTML content unselectable
<!-- prevents copying -->
<body ondragstart="return false;" onselectstart="return false;" oncontextmenu="return false;" onload="clearData();"
onblur="clearData();">
<script type="text/javascript">
// IE fix for unselectable
var elem = document.getElementById("resume");
elem.unselectable = "on"; // For IE and Opera
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment