-
jQuery simple rolloverDev/jQuery 2012. 7. 24. 21:00
jQuery 를 이용해서 간단하게 롤오버 이미지를 만들어 봤다.
<!-- jQuery Rollover -->
<script type="text/javascript">
jQuery(document).ready(function() {
$("img.rollover").hover(
function() {
this.src = this.src.replace("_off","_on");
},
function() {
this.src = this.src.replace("_on","_off");
}
);
});
</script>
'Dev > jQuery' 카테고리의 다른 글
JQuery URL 타입의 문자열 자동 링크 걸기 (0) 2012.06.21 jQuery 스타일 변경 (0) 2012.06.01 DIV 태그 클릭하면 DIV 숨기기 (0) 2009.10.13 jQuery 다운로드 (0) 2009.10.09