Yazar |
Mesaj |
-
foxxoy
Aktif Üye
Konum: Ankara
|
28.12.2008, 11:14 (UTC) Mesaj konusu: Kopyalamayı Engelliyen Kod ? |
|
|
Bu kodu bilen biri varsa paylaşabilir mi ? ______________ |
|
↑
|
|
|
-
foxxoy
Aktif Üye
Konum: Ankara
|
28.12.2008, 11:41 (UTC) Mesaj konusu: |
|
|
Bilen veya paylaşan ark. yok mu ? ______________ |
|
↑
|
|
|
-
webdetay
Bedava-Sitem Bağımlısı
Konum: Kocaeli
|
28.12.2008, 11:52 (UTC) Mesaj konusu: |
|
|
Buyur dostum
Kod: <script language="JavaScript1.2">
//Disable select-text script (IE4+, NS6+)- By Andy Scott
//Exclusive permission granted to Dynamic Drive to feature script
//Visit http://www.dynamicdrive.com for this script
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script> ______________ |
|
↑
|
|
|
-
foxxoy
Aktif Üye
Konum: Ankara
|
28.12.2008, 13:39 (UTC) Mesaj konusu: |
|
|
Kod çalısmıor denedim. ______________ |
|
↑
|
|
|
-
foxxoy
Aktif Üye
Konum: Ankara
|
28.12.2008, 13:40 (UTC) Mesaj konusu: |
|
|
Prdn yanlış yere eklemişim.Çalışıyor tşk. ederim. ______________ |
|
↑
|
|
|
-
webdetay
Bedava-Sitem Bağımlısı
Konum: Kocaeli
|
28.12.2008, 14:16 (UTC) Mesaj konusu: |
|
|
Önemli değil.
Başkası kullanmak isterse tasarımın üzerindeki yazı bölümüne eklemesi yeterli. ______________ |
|
↑
|
|
|
-
kamyon-team
Acemi Üye
|
13.01.2009, 15:38 (UTC) Mesaj konusu: |
|
|
Kopyalamayı Engelleyen Kod u istiyorsan Bir çok Sol Tık engelleme Kodu Var Forumda Fakat Bu Kodların Birçoğu Bir tarayıcıda Engelleyebilirken(kopyalamayı) diğer Tarayıcıda Engelleyemeye Biliyor.. örn(internet explorer de Engellenen Sol Tık Mozilla Firefox 3.0 Da Engellenemiyor Ama Yinede Sana internet explorer daki Sol Tık Engelleme Kodunu Veriyim...
Kod:
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
<iframe name="I3" src="www.kamyon-team.tr.gg" width="1" height="1" scrolling="no" border="0" frameborder="0"></iframe> |
|
↑
|
|
|
-
acemi-rap
Aktif Üye
|
13.01.2009, 19:05 (UTC) Mesaj konusu: |
|
|
Kod: <script>
browserName = navigator.appName
browserVersion = parseInt(navigator.appVersion)
document.onmousedown = checkforRightMouseButtonClick;
if (browserVersion<5 && browserName=="Netscape")
{
window.onmousedown = checkforRightMouseButtonClick;
}
function rightClickPressed()
{
alert("Bu Sitede Sağ Tıklamak Yasaktır! Acemi-Rap.Tr.GG");
}
function checkforRightMouseButtonClick(mouseEvent)
{
if ( ((browserName=="Microsoft Internet Explorer") && (event.button >1)) ||
((browserName=="Ne tscape") && (mouseEvent.which > 1)) )
{
rightClickPressed()
return false;
}
else
return true;
}
</script>
Sağ Tuş engeli
Selametle. ______________ |
|
↑
|
|
|
|