Posted by 기계식키보드
:

jquery live

JavaScript 2011. 5. 20. 18:22 |
jquery live에 이벤트 여러개 지정할 수가 잆다능..

$('.hoverme').live('mouseover mouseout click', function(event) {
  if (event.type == 'mouseover') {
 $(this).addClass("ov");
  } else if (event.type == 'mouseout') {
 $(this).removeClass("ov");
  } else if (event.type == 'click') {
 
  }
});
 

'JavaScript' 카테고리의 다른 글

세션유지  (0) 2010.12.20
Side Tab  (0) 2010.10.09
팝업 띄우기 주소보안 방법.  (0) 2010.10.07
유용한 놈들  (0) 2010.09.26
jQuery Plug-in  (0) 2010.09.12
Posted by 기계식키보드
:

Eclipse plug-in

etc 2011. 5. 13. 13:24 |

'etc' 카테고리의 다른 글

개발자가 보면 암걸리는 영상  (0) 2015.06.21
참 친절한 사이트  (0) 2013.05.17
Parallax scrolling  (0) 2012.02.02
Posted by 기계식키보드
: