Monday, December 9, 2013

Disable “Right Click” on any webpage

Hi,

Here is a quick tip to disable “Right Click” on your webpages. Insert the following code on your webpage and you are good to go.

<script>
function Disable()
{
if (event.button == 2)
{
alert("Right click disabled for this website !")

// or return false
}
}
document.onmousedown = Disable;
</script>

No comments:

Post a Comment