Skip to content

Instantly share code, notes, and snippets.

@nmec
Created January 19, 2014 16:58
Show Gist options
  • Save nmec/8507527 to your computer and use it in GitHub Desktop.
Save nmec/8507527 to your computer and use it in GitHub Desktop.
Prevent opportunistic image thieves.
jQuery(document).ready(function($){
// Prevent right click on carousel
$('.gallery').on('contextmenu', function(){
return false;
});
// Prevent right click on all image elements
$('img').on('contextmenu', function(){
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment