Knowledge Map
드래그 막기 본문
출처 : http://mylife365.tistory.com/22
/*user-select:none 속성은 해당요소의 드레그, 더블클릭, 블럭지정을 막는다.*/
div {
-ms-user-select: none;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
}
'WEB > JAVASCRIPT' 카테고리의 다른 글
좌클, 우클 구별하기 (0) | 2016.11.02 |
---|---|
하이차트 사용법 (0) | 2016.10.31 |
팁 (0) | 2016.10.19 |
dom 으로 인라인 태그 값을 넣을 경우 생기는 문제 (0) | 2016.08.09 |
Javascript 문서화 (0) | 2016.08.09 |
Comments