useful because there’s still many ways to unable that function when someone has disable it.
How to disable right click on website
The reason why mostly people want disable right click function on website because they worrie the content will be stolen or being copy by other.And now how to resolve this problem? And the answer is you can disable the right click function with javascript.
disable-right-clik |
As described below this is codes for :
<!-- disable right click start -->
<script language="javascript">
document.onmousedown=disableclick;
status=" you can change status alert here";
Function disableclick(event)
{
if(event.button==2)
{
alert(status);
return false;
}
}
</script>
<!-- disable right click end -->
<script language="javascript">
document.onmousedown=disableclick;
status=" you can change status alert here";
Function disableclick(event)
{
if(event.button==2)
{
alert(status);
return false;
}
}
</script>
<!-- disable right click end -->
How to disable right click on blog or wordpress
So No matter what will you do no mather how you to disable right click function only can disable javascript at some browser, but they still can access it. The true is there no benefit to disable right clik on the website the reason is sometimes people will stop visiting your site. Not every visitor want stolen our content, maybe they just want copy for self and reading soon. At the last we will lost the traffic. There’s many way people can look up into your codes and stole it for personal interest.
When im searching about this think it seem this topic many people has debate about this.
At last like I said no matter what will you do to disable this function they still have many ways to look up your codes
Thanks for reading and visiting here. Next time i will share the other tutorial.
End tutorial about :
See you next time in other tutorial.
No comments:
Post a Comment