본문 바로가기

0과 1 그 끝없는 세상

[Tistory] 사진 다운 가능, 퍼가기 방지

오른쪽 클릭 저장 가능
퍼가기는 불가

<body></body> 사이에 아무곳이나 아래 내용을 붙여 넣는다.


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