IE에서 마우스로 선택하지 못하게 하는 이벤트로 selectstart 를 이용한다. 이때 특정한 부분만 선택가능하게 하고 싶을 때 다음과 같은 코드를 이용할 수 있다.


$(document).bind("selectstart", function(e){

   return $(e.target).is(".selectable");

});

'jQuery' 카테고리의 다른 글

[HTML] From 에서 Enter 키로 Submit 되는 현상 막기  (0) 2013.01.31
jQuery Chart Plugin  (0) 2013.01.31
jQuery Alert Plugin  (0) 2013.01.31
posted by 소연파파™