Saturday 9 November 2013

How To Disable Right Click On Your Website Or Blog ?


 Disable Right Click for blog

If you own a blog or a website then you always want to prevent other malicious bloggers from copying the content from your blog. You might have written an article with great efforts and lots of research and other just copy/paste it on their blog. To prevent such users from copying content from your blog i will show you Javascript Trick to disable right click on your blog. So lets get started.

How To Disable Right Click On Your Blog ?

 1. Got to your blogger Dashboard and then Click on Layout.

blogger widget

 

 2. Now Click on Add Gadget and select Html/Javascript.

blogger widget

 3. Now paste code given below in the pop up window.

<script language='JavaScript'>

var msg="Function Disabled";

function disableIE() {if (document.all) {alert(msg);return false;}

}

function disableNS(e) {

if (document.layers||(document.getElementById&&!document.all)) {

if (e.which==2||e.which==3) {alert(msg);return false;}

}

}

if (document.layers) {

document.captureEvents(Event.MOUSEDOWN);document.onmousedown=disableNS;

} else {

document.onmouseup=disableNS;document.oncontextmenu=disableIE;

}

document.oncontextmenu=new Function("alert(msg);return false")


</script>

4. Save it and done. Now users will not be able to right click on your website.