İyinet'e Hoşgeldiniz!

Türkiye'nin En Eski Webmaster Forum'una Hemen Kayıt Olun!

Kayıt Ol!

Firefox 'dada çalışacak bir sağ tuş kilidi

emucu

0
İyinet Üyesi
Katılım
11 Şubat 2006
Mesajlar
533
Reaction score
0
Piyasa olan sağ tuş kilitleme js leri mozillada kilitlemiyor. Bu konuda yardımcı olabilecek bir arkadaşımız varmı ?
 

Gizlen

0
İyinet Üyesi
Katılım
24 Ocak 2008
Mesajlar
204
Reaction score
0
Konum
localhost
<script language="JavaScript">
var message="Sorry Right Click is Disabled!"; // Message for the alert box

// Don't edit below!

function click(e) {
if(document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}else if(document.layers || document.getElementById){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> </script>

yada
<script type="text/javascript">

function md(e)
{
try { if (event.button==2||event.button==3) return false; }
catch (e) { if (e.which == 3) return false; }
}
document.oncontextmenu = function() { return false; }
document.ondragstart = function() { return false; }
document.onmousedown = md;

</script>

deneyebilirsin.
 

leMAN

0
İyinet Üyesi
Katılım
9 Nisan 2008
Mesajlar
67
Reaction score
1
bod ye bunu ekle:)

< body oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
 

emucu

0
İyinet Üyesi
Katılım
11 Şubat 2006
Mesajlar
533
Reaction score
0
<script type="text/javascript">

function md(e)
{
try { if (event.button==2||event.button==3) return false; }
catch (e) { if (e.which == 3) return false; }
}
document.oncontextmenu = function() { return false; }
document.ondragstart = function() { return false; }
document.onmousedown = md;

</script>



bunu kullandım teşekkürler
 

Türkiye’nin ilk webmaster forum sitesi iyinet.com'da forum üyeleri tarafından yapılan tüm paylaşımlardan; Türk Ceza Kanunu’nun 20. Maddesinin, 5651 Sayılı Kanununun 4. maddesinin 2. fıkrasına göre, paylaşım yapan üyeler sorumludur.

Backlink ve Tanıtım Yazısı için iletişime geçmek için Skype Adresimiz: .cid.1580508955483fe5

Üst