- harryzzers#7700
- Katılım
- 19 Eyl 2021
- Mesajlar
- 1,522
- Tepkime puanı
- 423
- Şehir
- Yurtdışı
Selamlar. HTML sitenizde yazılan yazıların çalınmaması vs. için kullanabileceğiniz bazı scriptler (kodlar) yer almaktadır, iyi günlerde kullanın!
F12 ENGEL
SAĞ TIK ENGEL [JQUERY]
YAZI SEÇME ENGEL
F12 ENGEL
HTML:
$(document).keydown(function (event) {
if (event.keyCode == 123) { // Prevent F12
return false;
} else if (event.ctrlKey && event.shiftKey && event.keyCode == 73) { // Prevent Ctrl+Shift+I
return false;
}
});
SAĞ TIK ENGEL [JQUERY]
HTML:
$(document).on("contextmenu", function (e) {
e.preventDefault();
});
YAZI SEÇME ENGEL
HTML:
function disableselect(e)
{
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar)
{
document.onmousedown=disableselect
document.onclick=reEnable
}