In this tutorial I'm going to show you how to add no right click function on Blogger/Blogspot blog.Please follow the steps below in this post.Let's start the tutorial.
- Go to Dashboard > Layout > Add Gadget > HTML / JavaScript
<script language=JavaScript>
<!--
//Disable right mouse click Script
//By Blogs Daddy
//For full source code, visit http://www.blogsdaddy.com
var message="This Function Is 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>
- Save The HTML/Javascript and View Your Blog.
0 comments:
Post a Comment