마우스 오버 및 마우스 아웃시의 함수 작성
javascript
function imgReplace (obj, before, after){
obj.attr("src", function(){
return $(this).attr("src").replace(before, after);
});
}
$("a.pdfDown")
.on("mouseenter focusin", function(){
$(this).addClass("on");
imgReplace($("img",this),'_off','_on');
})
.on("mouseleave focusout", function(){
$(this).removeClass("on");
imgReplace($("img",this),'_on','_off');
});
'Code Lab' 카테고리의 다른 글
폼 유효성 검사(Form validate check) - 간단 자바스크립트 (1) | 2015.02.19 |
---|---|
jQuery map을 이용한 max값(width,height) 구하기 (0) | 2015.02.15 |
switch case문 기초 사용해 보기 (0) | 2015.02.11 |
모바일 주소창 없애기 (1) | 2015.02.11 |
window resize와 document resize를 trigger와 triggerHandler 했을때 차이점 (0) | 2015.02.11 |