[JavaScript] HTML페이지에서 드래그로 문자열 선택 금지 (disable text selection include firefox)
JavaScript 2010. 11. 19. 11:34브라우저에서 마우스 드래그로 텍스트 선택 금지시키는 소스.
파이어폭스가 문제였음.
아, 귀찮다...
function disableSelection(obj)
{
// IE
if (typeof obj.onselectstart != 'undefined') obj.onselectstart = function(){ return false; }
// FireFox
else if (typeof obj.style.MozUserSelect != 'undefined') obj.style.MozUserSelect = 'none';
}
{
// IE
if (typeof obj.onselectstart != 'undefined') obj.onselectstart = function(){ return false; }
// FireFox
else if (typeof obj.style.MozUserSelect != 'undefined') obj.style.MozUserSelect = 'none';
}
'JavaScript' 카테고리의 다른 글
[JavaScript] HTML Element의 위치, 크기 절대값 (0) | 2011.01.26 |
---|---|
[JavaScript] PHP의 pack() 함수 흉내내기 (0) | 2010.12.03 |
[JavaScript] 다차원 배열 정렬 (multiple array sort) (4) | 2010.11.02 |
[JavaScript] MD5 (0) | 2010.09.16 |
[JavaScript] URI encoding (0) | 2010.04.01 |