
wWw.bLacK-WeB.Tr.Gg | GeneL, WebmasTer, EğLence Platformu
JavaScript ile içeriklerinizde … koruma
Buradaki herkes site sahibi olduğuna göre onca emek harcayarak oluşturulan forum içeriklerinin, Site sahibi için ne kadar değerli olduğunu herkes biliyordur.Peki ya bu içeriklerin çalınmasına halinde ne hissedersiniz?
Bunu yaşayanlarınız elbet vardır ki bunlardan biri de benim.

ALTTAKİ KODLARI




FireFox Sağ Tık Engelleme:
Kod: |
<script language=JavaScript> <!-- var message="Ne yazık ki olmaz!"; /////////////////////////////////// function clickIE4(){ if (event.button==2){ alert(message); return false; }} function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return false; }}} if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; } document.oncontextmenu=new Function("alert(message);return false") // --> </script> |
Seçim ve Sağ Tık Engelleme:
Kod: |
<script language=JavaScript> <!-- 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; } } if ( document.layers ) document.captureEvents( Event.MOUSEDOWN ); document.oncontextmenu = nocontextmenu; document.onmousedown = norightclick; document.onmouseup = norightclick; function notaccept(e) { return false; } document.onmousedown = notaccept; document.onselectstart = new Function( "return false" ); // --> </script> |
Caba Olarak da CTRL+C Engelleme:)
Kod: |
<script> function ctrlCEngelle(e) { olay = document.all ? window.event : e; tus = document.all ? olay.keyCode : olay.which; if(olay.ctrlKey&&(tus==99||tus==67)) { if(document.all) { olay.returnValue = false; } else { olay.preventDefault(); } } } </script> |
kanzuk yazmış: | ||
şu şekilde hem int.exp. hemde firefox için işinize yarayacaktır. yazı seçme ve sağ tuş engelli. ayrıca sağ tuşa tıklandığında uyarı vermiyecektir.
|
Bu arada %15'i de azimle çalışanların payı.






24 ziyaretçi (43 klik)