Disable Right Click

Script:
1
2
3
4
5
6
7
8
9
10
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