25-03-07, 10:15
|
#1 (permalink)
|
|
..:: Prenses ::..
|
Sağ Tuş Engelleme
Sağ tıklamayı engelliyen Script...Sitenizde artık kimse sağ tuş kullanamaz 
Kod:
<script language="Javascript1.2">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var mymessage = "--- TTPORTAL.NET ---";
function rtclickcheck(keyp){
if (navigator.appName == "Netscape" && keyp.which == 3) {
alert(mymessage);
return false;
}
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {
alert(mymessage);
return false;
}
}
document.onmousedown = rtclickcheck
//-->
|
|
Konu paradise tarafından (25-03-07 Saat 10:19 ) değiştirilmiştir.
|
|
|