우측클릭 & 드래그 방지 태그
페이지를 긁거나 마우스 왼쪽 오른쪽 클릭이 되지 않습니다.
<*body>태그와 교체하여 넣어 주세요
<*body oncontextmenu="return false" xxonselectstart="return false" ondragstart="return false">
<body oncontextmenu="return false" xx-xxonselectstart="return false" ondragstart="return false">
못버가게 하는 태그
<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>
'컴.태그공부' 카테고리의 다른 글
Window Media Player의 기본 형태(태그) (0) | 2012.01.04 |
---|---|
이것만 알면~ 컴퓨터 달인 (0) | 2012.01.04 |
이미지가 움직이는 태그 (0) | 2012.01.04 |
마우스 드래그 금지 태그 (0) | 2012.01.04 |
태그연습장만들기 (0) | 2011.12.08 |