Saturday 4 April 2015

Right_click_disable_code_in_javascript

<script language='JavaScript' type='text/JavaScript'>

 var tenth = '';

 function ninth() {
   if (document.all) {
     (tenth);
     alert("Right Click Disable");
     return false;
   }
 }

 function twelfth(e) {
   if (document.layers || (document.getElementById && !document.all)) {
     if (e.which == 2 || e.which == 3) {
       (tenth);
       return false;
     }
   }
 }
 if (document.layers) {
   document.captureEvents(Event.MOUSEDOWN);
   document.onmousedown = twelfth;
 } else {
   document.onmouseup = twelfth;
   document.oncontextmenu = ninth;
 }
 document.oncontextmenu = new Function('alert("Right Click Disable"); return false')
</script>

No comments:

Post a Comment