Sitenizde Copyright (Telif Hakkı Satın ALınmış) Varsa ve Sitenizden İçeriğinizi Çalaları TEspit Ederseniz Şikayette Bulunabilirsiniz.. Eğer Copyright yoksa Şikayet Etmek Gibi Bir Hakkınız Olmuyor..
Çoğu Sitede Copyright yok.. Biz de Sitelerimizden içerik çalınmaması için önlemler alıyoruz..
Bu Kodları Sitenize Yerleştirin. İçeriğiniz Çalınmayacaktır
Tasarım Ayarları
Gelişmiş ayarlar
Tasarımın Üstündeki Yazı Adlı Kutucuğa Yerleştirin ve kaydedin..
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>
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>
Kod: <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>
<body ondragstart="return false" onselectstart="return false" oncontextmenu="return false">