HOW TO DISABLE RIGHT CLICK ON WEBSITE

Have you ever worked really hard on graphics for your site only to find later that someone has stolen them as their own. You can help encrypt and protect your site with the following HTML codes. No right click block is 100% effective, but they will help against novices.

Use the script below so when someone right clicks to save an image off your page, a message will come up letting people know that your information is copyrighted.

This script may not work in all browsers, and is not foolproof. If someone really wants something from your page they can find ways around it, but at least it’s a warning to people who want to take your graphics. But it certainly is a great start.

Copy and paste the following code, and make sure it comes right after your tag:
[code lang=”js”]
<script type="text/javascript">
if (document.addEventListener) {
document.addEventListener(‘contextmenu’, function(e) {
alert("You’ve tried to open context menu");
//window.location = "http://www.yoururl.com";
e.preventDefault();
}, false);
} else {
document.attachEvent(‘oncontextmenu’, function() {
alert("You’ve tried to open context menu");
//window.location = "http://www.yoururl.com";
window.event.returnValue = false;
});
}
</script>[/code]

There is lot of plugin available if you are in WordPress.