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.
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