브라우저에서 마우스 드래그로 텍스트 선택 금지시키는 소스.
파이어폭스가 문제였음.

아, 귀찮다...

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';
}





Posted by bloodguy
,