Sunday, 17 April 2011

TUTORIAL DISABLE RIGHT CLICK

Hey Guys !, harini nak belajar buat tutorial disable right click. Mana yang belum tahu nak buat boleh lah ikut tutorial ini Okay :) korang kalau tak nak entri korang di copypaste or copycat oleh sesiapa boleh lah buat tutorial ini. Jom mula ...

First, Copy This Code
<script language=JavaScript>
<!--
//edit by unwanted

var message="Masukkan Mesej Korang 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>

Second, Paste pada "HTML/javascript" in your blog.
Dashboard >Layout>Add a Page element >html/javascript


Warna biru tu korang boleh change mesej korang like this





When you done, save it or else it will not working :)

No comments:

Post a Comment