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