티스토리내에 불펌 금지 태그를 적용했습니다. 마우스 드래그를 사용하지 못하는건데요,
누가 내글을 가지고 갈까...싶지많은- 그래도 어느순간 내 글이 남의 글이 되어서 돌아다니는건
방지 할 수 있지 않을까 싶어서요 ㅎㅎ
오른쪽 클릭 방지는 티스토리 플러그인에- 스팸.불펌방지-마우스 오른쪽 클릭 방지
이걸 활성화 시켜 주시면 됩니다~
지금 소개해 드리고 있는 태그와 플러그인을 같이 사용하면 적용이 잘 안된다는 말도 있던데... 아직까지 두개를 같이 사용해도 잘 되고 있는걸 알 수 있겠네요~ ㅎ



태그는

<head>

<script type="text/javascript">

var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

</script>

<body>

스킨 편집에서 헤드와 바디 사이에 이 태그를 넣어주면, 마우스 왼쪽으로 드레그가 되지 않습니다. 퍼가는 분들의 입장에선 상당히 답답한 부분인데, 글쓴이에겐 좀 유용한 불펌방지 태그가 되지 않을까 싶습니다~

반응형

+ Recent posts