Skip to content

Instantly share code, notes, and snippets.

@fakiolinho
Created April 16, 2014 18:31
Show Gist options
  • Save fakiolinho/10917738 to your computer and use it in GitHub Desktop.
Save fakiolinho/10917738 to your computer and use it in GitHub Desktop.
jQuery: Hide Code
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
$(document).ready(function(){
$(document).bind("contextmenu", function(e){
return false;
});
$(document).on('keydown', function(e) {
if(e.keyCode == 123) return false;
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment