Tistory 내용 복사 방지 방법
2021. 12. 19. 17:06ㆍEnv/Tools
- 목차
반응형
페이지 내에서 내용을 복사하는 것을 막는 방법입니다.
Tistory 설정 -> 꾸미기 -> 스킨편집
을 click 한 후, head section 내에 다음의 코드를 추가 합니다.
...
<!-- no copy code starts -->
<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>
<!-- no copy code ends -->
...
</head>
반응형
'Env > Tools' 카테고리의 다른 글
Python 설치 (0) | 2021.12.23 |
---|---|
윈도우즈10 최근 실행 파일 안 보이게 하기 (0) | 2021.12.20 |
VirtualBox Ubuntu 메뉴가 안보일 때 (no menu) (0) | 2021.12.13 |
Markdown grammar (0) | 2021.12.05 |
git diff & patch 적용 (0) | 2021.11.30 |