//나의현황 마우스 오버 아웃 처리
$("#MY_PRSEN_CONDI tr td").mouseenter(function(){
if($(this).text().trim()!='0건'&&$(this).text().trim()!='0원'){
$(this).css('background-color', '#05abe0');
$(this).css( 'cursor', 'pointer' );
}
});
$("#MY_PRSEN_CONDI tr td").mouseleave(function(){
if($(this).text().trim()!='0건'&&$(this).text().trim()!='0원'){
$(this).css('background-color', '#FFFFFF');
$(this).css( 'cursor', 'none' );
}
});
'J-Query' 카테고리의 다른 글
[번역] 프론트엔드 개발자는 왜 구하기 어렵나요? [공유] (1) | 2015.06.17 |
---|---|
jQuery 이벤트 적용 관련 정리 (0) | 2015.01.06 |
INPUT 박스 일정 범위를 선택 하도록 처리 하는 함수 (0) | 2014.12.26 |
리플레쉬 없이 Jquey 를 테스트 해보자 . (0) | 2014.09.01 |
modal popup 창 사용 부모 자식간의 데이터 전송 (0) | 2013.05.10 |