Saturday, May 14, 2011

How to prevent the right button in yoyr blog

Tricks of web programming
Prevent copying

To prevent too easy to copy content and photos in a blog by clicking the right mouse button, insert the following code before  </ head>    :

<script language="JavaScript1.2">
ejs_nodroit function ()
{
alert ('Not allowed');
return (false);
}
document.oncontextmenu = ejs_nodroit;
</ script>