공부하자/알면 유용한정보

불펌금지 스크립트(우클릭금지)

YoBot 2016. 2. 24. 11:01

티스토리 불펌금지 스크립트▽


<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 oncontextmenu="return false" onselectstart="return false" ondragstart="return false">


상기 스크립트를 <head> 안에 설정해주시면 됩니다.


감사합니다.





'공부하자 > 알면 유용한정보' 카테고리의 다른 글

ARM 프로세서의 장점  (0) 2016.11.23
System On a Chip  (0) 2016.11.23
Cache Memory, Write Buffer  (0) 2016.11.23
프로세서 (Processor) 종류  (0) 2016.11.23
Bus System  (0) 2016.11.23