Skip to content

Instantly share code, notes, and snippets.

@coffeencoke
Created February 22, 2012 13:45
Show Gist options
  • Save coffeencoke/1885229 to your computer and use it in GitHub Desktop.
Save coffeencoke/1885229 to your computer and use it in GitHub Desktop.
Prevent saving images for copyright purposes
<img class='portfolio' oncontextmenu="return false" ondragstart="return false" src='copyrighted_image.png' />
img.portfolio{
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment