Posts List

Translate

2014년 2월 19일 수요일

[불펌 방지, 블로그 보안] 블로그 우측마우스 클릭 방지 방법

[불펌 방지]  블로그 우측마우스 클릭 방지 방법
<script language="JavaScript">
<!--

//Disable right mouse click Script
//By Being Geeks
//For full source code, visit http://www.beinggeeks.com

var message="퍼가지 마세요 ㅎ 원하시면 메일을 보내주세요. 메일은 kimseonghun0908@gmail.com 자료요청시 자료 보내드리겠습니다.";

///////////////////////////////////
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>

댓글 없음 :

댓글 쓰기