Skip to content

Instantly share code, notes, and snippets.

@Takazudo
Created February 10, 2011 10:56
Show Gist options
  • Select an option

  • Save Takazudo/820314 to your computer and use it in GitHub Desktop.

Select an option

Save Takazudo/820314 to your computer and use it in GitHub Desktop.
disable user right click
img{
-webkit-touch-callout:none; /* iOS Safari */
-webkit-user-select:none; /* iOS Safari */
touch-callout:none;
user-select:none;
}
$('img').live('contextmenu', function(e){
e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment