Disable Right Click for Blogspot


Why Should Disable Right Click.?
Typically, a blog owner will use this function to prevent other people take what is in their blog. Their sentences were not happy either copied or to avoid bandwidth used up. Usual reason that I always read that there are people who copy their articles


Here is a simple way to use this function.

1. Copy this code.
<script language=JavaScript>
<!--
//edit by unwanted

var message="Your Message Here";
///////////////////////////////////
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>

2. Paste in "HTML / javascript" in your blog.

3. Save and view its effect on your blog

0 comments:

Post a Comment