Skip to content

Instantly share code, notes, and snippets.

@shyamsalimkumar
Last active July 26, 2019 22:38
Show Gist options
  • Save shyamsalimkumar/5752591 to your computer and use it in GitHub Desktop.
Save shyamsalimkumar/5752591 to your computer and use it in GitHub Desktop.
HTML/JS Right Click Disable
<script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript" language="javascript">
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment