As You All Guys Know That I Make Right Click Disabled How?
And Why
Because People Can Direct Copy Your Own Post
How I done It?
Lets See
This is The Embeded code needs to be added in the elements page as a new widget. Follow the below steps:-
And Why
Because People Can Direct Copy Your Own Post
How I done It?
Lets See
This is The Embeded code needs to be added in the elements page as a new widget. Follow the below steps:-
- Log into your Blogger Dashboard.
- Navigate to your blog’s Layout >> Page Elements page.
- Now add a new widget by navigating to Add a Gadget >> HTML / JavaScript
- Add the following code to HTML / JavaScript box.....Just Copy And Paste.
- Make This Code Into Your Add Gadget Or Widget
- <script language=JavaScript>
<!--
//Disable right mouse click Script
//By Being Geeks
//For full source code, visit http://www.beinggeeks.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>
Post a Comment