i want to block the right clic when i open the images in a gallery.
look here :http://sict-packaging.com/site/boxes.html it's when i open the image, i don't now if it's possible

Code: Select all
<script language="JavaScript1.2">
function ejs_nodroit()
{
alert('Clic droit interdit');
return(false);
}
document.oncontextmenu = ejs_nodroit;
</script>