Created
January 19, 2014 16:58
-
-
Save nmec/8507527 to your computer and use it in GitHub Desktop.
Prevent opportunistic image thieves.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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