Tekil Mesaj gösterimi
  #2 (permalink)   eTicaret 
Alt 2007-12-14, 15:58
power power isimli üyemiz çevrimdışıdır. (Offline)
Member
 
Üyelik tarihi: Oct 2004
Mesajlar: 231
Tecrübe Puanı: 4
eTicaret: %100/5
power is on a distinguished road
Standart

<script language="JavaScript1.2">
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e) // This function is used by all others
{
if (window.Event) // again, IE or NAV?
{
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>
Alıntı ile Cevapla