Hye and assamualaikum! tak jawab dosa
I know all of you have trouble to copy the code in tutorial lesson. sorry!! i would make it disappeared forever. haha but before that i want to make tutorial how to disabled right click if you don't want other people copy your statements or stories or whatever it is in your blog >.< Hope it's useful for you guys
now follow these steps okay 😃
Log in > Dashboard > Layout > Add Page Elements > Html
then copy this code and paste in Html.
And for the red colour, you can change it.. write whatever you want and then publish and view your blog. How it is? ^.^
And for the red colour, you can change it.. write whatever you want and then publish and view your blog. How it is? ^.^
<script language=JavaScript>
<!--
//edit by unwanted
var message="Masukkan Mesej Anda Disini";
///////////////////////////////////
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>