photo tutorial_zps442c93fa.png  photo owner_zps6a3d4f56.png  photo home-1_zpsab213777.png

Tutorial : Disable Right Click Without and with Alert

Views

Request by a girl call Hannah , so just follow the step below here :

1. Dashboard - Design - Add Gadget - HTML/JavaScript , copy and paste this code into HTML/JavaScript




With Alert Message


<style>body {cursor:crosshair} </style>


<script language=javascript>
<!--
//edit by unwanted


var message="Your own word";
///////////////////////////////////
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>


Without Alert Message  
<script language=JavaScript>
<!--
//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dauspozi.com
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>




Done :)