Sunday, March 17, 2013

Disable Right Click in Blogger

Disable Right Click in Blogger

Disable Right Click in Blogger - If we want, we can disable right click on our blog. With disable right click on our blog, we can reduce or prevent the visitors of the our blog copying your contens.
This tool is very useful to different site owners who don't want to let their site content Copied.This script is provided in two style Alert and non alert . After you use Alert Script if someone Right click then a Message is appeared and if you use non alert then no message is displayed.To setup this tool in your blog Copy the Following code and paste it to your blog by adding a new page element.

How to Disable Right Click in Blogger, this is the steps:
1. Login to your blog
2. Goto Design -> Edit HTML
Copy Following Code
Message Alert Script:
<script language=JavaScript>
<!--

//Disable right mouse click Script

var message="<span style="color: red;">Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

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

// --> 
</script>
You can change alert Function Disabled!

Message nonAlert Script:
<script language=JavaScript>
<!--

//Disable right click script III- By Renigade (renigade@mediaone.net)


var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// --> 
</script>

3. Paste the code before code </head>
4. Click Save Template
Load disqus comments

0 komentar