본문 바로가기

javascript

본문 내용 드래그 선택 금지시키기

<HTML>
<HEAD>

<!-- 윈도우의 메모장 등으로 아래의 스크립트를 <HEAD>태그와 </HEAD> 태그 사이에 복사 해 넣으세요 -->

<script language="JavaScript1.2">

function disableselect(e){
return false
}

function reEnable(){
return true
}

// IE4+
document.onselectstart=new Function ("return false")

// NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>

</HEAD>

<BODY>


<CENTER><H3>마우스로 본문의 텍스트를 드래그 해 보세요</H3></CENTER>

</BODY>
</HTML>