|
<SCRIPT LANGUAGE="JavaScript">
<!--
function click() {
if (event.button==2)
{
alert('Copyright Abbydale Systems');
}
}
document.onmousedown=click
// --> </SCRIPT>
|
You can use this technique to prevent users from using the right mouse button click to
download pictures or view the source code from your website.
It isn't 100% foolproof
but it will stop the casual user from right clicking the mouse to 'steal' images, source code etc.
It will disable all right button functions, including print. |
|