|
First create an HTML frag box by choosing Insert > Web Object > HTML
Now copy the code below and insert it into the HEAD only part of the frag box
<script type="text/javascript">
<!--
function NoRightClick(e)
{
if(navigator.appName=="Netscape")
{
if(e.which==3||e.which==2)
{
return false;
}
}
else
{
event.cancelBubble=true;
event.returnValue=false;
}
}
if(navigator.appName=="Netscape")
window.captureEvents(Event.MOUSEDOWN)
document.oncontextmenu=NoRightClick;
window.onmousedown=NoRightClick;
// -->
</script>
This will not totally stop people copying content from your site but does work as a no right click.
|