Disable Right Click

Script:
 
document.onmousedown=disableclick;
status="Right Click Disabled";
Function disableclick(event)
{
  if(event.button==2)
   {
  alert(status);
  return false;    
   }
}
HTML:

<body oncontextmenu="return false">
...
</body>

No comments:

Post a Comment