|
You can use this scritp for your no right click submited to my site acjavascripts.com by DON!
-----------
<script language="javascript">
<!--
//Don Santiago
//senor_santi@yahoo.com
//No right clicks
function disable_enable(){
//if the surfer is using IE 4 or above
if (document.all){
if (document.accessform.accesstext.disabled==true)
document.accessform.accesstext.disabled=false
else
document.accessform.accesstext.disabled=true
}
}
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
//-->
</script>
-----------
__________________
Please login or register to view this content. Registration is FREE - 100 Satisfied Customers - Custom Programming and Web Development
|