About This Script
If users can right click on content on your site, they can easily copy it to their own site to pass it off as your own. If you copy this script and paste it anywhere on your web page it will mean nothing happens when a user right clicks (on this page only). Note: this acts as a deterrant only! There are other ways to copy content from a site the user can use if they know what they're doing.
Demo
The disable right click code is running on this page. Try right clicking and see what happens.
Code
<script>
// Disable right click provided by http://www.top-site-list.com
document.addEventListener('contextmenu', function(e){
e.preventDefault();
}, false);
</script>
More scripts