How to disable right click on web page or If you want to protect your source code or many times programmers may need to disable right click on web page. You can copy below script code in between <head> and </head> tag.
<script type="text/javascript">
var message="You Can't right click on this page!";
function clickIE()
{
if (event.button==2)
{
alert(message);
return false;
}
}
if (document.all&&!document.getElementById)
{
document.onmousedown=clickIE;
}
document.oncontextmenu=new Function("alert(message);return false")
</script>
The .NET Framework allows developers to use the same set of skills to rapidly buid great applications for the web, windows, services and more.
Disable Right click on web page
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment