Advertisement
Guest User

Disable Klik kanan

a guest
Oct 16th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <script>
  2. var pesen="Tidak Diizinkan Klik Kanan Untuk Copy Paste !!!";
  3. ///////////////////////////////////
  4. function clickIE4(){if (event.button==2){alert(pesen);return false;}}
  5. function clickNS4(e){if (document.layers||document.getElementById&&!document.all){if (e.which==2||e.which==3){alert(pesen);return false;}}}
  6. if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS4;}
  7. else if (document.all&&!document.getElementById){document.onmousedown=clickIE4;}
  8. document.oncontextmenu=new Function("alert(pesen);return false")
  9. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement