우클릭방지,드래그방지

네이버 블로그로 글을 어느정도 옮겼기에 우클릭방지, 드래그 방지를 추가하였다.
참고한 글
https://gong6587.tistory.com/1037


1. 우클릭방지 추가, 드래그 방지 추가 (2021.02.21)

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







No comments: