Blogspot sağ tuş engelleme?
20
●3.722
- 13-07-2008, 13:07:38
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!"); } function checkforRightMouseButtonClick(mouseEvent) { if ( ((browserName=="Microsoft Internet Explorer") && (event.button >1)) || ((browserName=="Ne tscape") && (mouseEvent.which > 1)) ) { rightClickPressed() return false; } else return true; } </script>
Umarım Yardımcı olabilmişimdir - 13-07-2008, 13:27:06
- 13-07-2008, 13:38:26Kalyoncu adlı üyeden alıntı: mesajı görüntüle
Yerleşim/Sayfa Ogeleri/Sayfa Ogesi Ekle/ HTML/JavaScript Gir Kodu Yapıştır
Kolay gelsin
Örnek - 13-07-2008, 13:41:57Yerleştireceğiniz kodlar 1. si
Alıntı
Ekleyeceğimiz 2. kod
Alıntı
Böylelikle yazılarımızın çalınmasını azda olsa engellemeye çalışıyoruz. - 13-07-2008, 14:14:05Misafir
<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> <script language='JavaScript'>curPage=1; document.oncontextmenu = function(){return false} if(document.layers) { window.captureEvents(Event.MOUSEDOWN); window.onmousedown = function(e){ if(e.target==document)return false; } } else { document.onmousedown = function(){return false} }</script>
bnm kulladıgım bu süper calısıo , sağ tık engelliyo bide yazı falan seçilmiyo