Introduction:
In this article,explains how to disable the right click option in web site.
Main:
We can easily disable the right click in website/web pages.
Step 1:Using Javascript,
function disable()
{
if (event.button == 2) //Handling mouse right click
{
alert("RightClick is not authorised")
}
}
function disable() { if (event.button == 2) //Handling mouse right click { alert("RightClick is not authorised") } } |
Step 2:Using html,
<body oncontextmenu="return false">
<body oncontextmenu="return false"> |
Conclusion:
Hope this helps,
Happy Coding.