jquery live
JavaScript 2011. 5. 20. 18:22 |
jquery live에 이벤트 여러개 지정할 수가 잆다능..
$('.hoverme').live('mouseover mouseout click', function(event) {
$('.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 |
Eclipse plug-in
etc 2011. 5. 13. 13:24 |- 클래스 다이어그램 생성, 읽기 전용 http://www.objectaid.com
'etc' 카테고리의 다른 글
개발자가 보면 암걸리는 영상 (0) | 2015.06.21 |
---|---|
참 친절한 사이트 (0) | 2013.05.17 |
Parallax scrolling (0) | 2012.02.02 |