• Web sitemizin içeriğine ve tüm hizmetlerimize erişim sağlamak için Web sitemize kayıt olmalı ya da giriş yapmalısınız. Web sitemize üye olmak tamamen ücretsizdir.
  • Sohbetokey.com ile canlı okey oynamaya ne dersin? Hem sohbet et, hem mobil okey oyna!
  • Soru mu? Sorun mu? ''Bir Sorum Var?'' sistemimiz aktiftir. Paylaşın beraber çözüm üretelim.

Web sayfasında fareye sağ tıklama yasağı koymak

Üyelik Tarihi
7 Ocak 2015
Konular
4,091
Mesajlar
4,274
MFC Puanı
40
Web sayfalarında içeriği korumak amaçlı fareye sağ tıklama yasağı koyarak içeriğinizi korumaya yardımcı olursunuz. Kesin korunur denilmez ama korumaya yardımcı olan bir etkendir ve birçok kullanıcıyı önler. Kod: if (window.Event) // Only Netscape will have the CAPITAL E.
********.captureEvents(Event.MOUSEUP); // catch the mouse up event
function nocontextmenu() // this function only applies to IE4, ignored otherwise.
{
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;
}
}
********.oncontextmenu = nocontextmenu; // for IE5+
********.onmousedown = norightclick; // for all others
 
Üst