Rainbow Pinwheel Pointer

How to Disable Right Click on your Blog



First of all, Go to your blogger Dashboard>>>>Click on "Layout".


Now click on "Add a Gadget" and select "HTML/JavaScript"


After that Copy and Paste the below blue colour code in pop up window of HTML/JavaScript.

<script language=javascript>
<!--

//Disable right mouse click Script
//By World Wide Web
//For full source code, visit http://www.worldwideweb4u.blogspot.com

var message="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>

Now, Save it and you are done
That's it....

No comments:

Post a Comment