pokemon
October 13th, 2006, 06:52 AM
This script will disable right mouse click on your website so that no one can steal your graphics.When anyone right click on your site he/she will be shown a message that "items on this page are protected".
Here's the code:-
<script>
var message="Items On This Page Are Protected!";document.oncontextmenu=Function("alert(message);return false");if (document.all) document.onselectstart=new Function ("alert(message);return false");else document.onmousedown=new Function ("alert(message);return false");
</script>
Here's the code:-
<script>
var message="Items On This Page Are Protected!";document.oncontextmenu=Function("alert(message);return false");if (document.all) document.onselectstart=new Function ("alert(message);return false");else document.onmousedown=new Function ("alert(message);return false");
</script>