<script type="text/javascript">
$(document).ready(function() {
$(".subPic").mouseover(function() {
var img = $(this).attr("src");
$("#mainPic").attr("src", img); // 이미지 변경
$("#mainPic").attr("width", 650); // 넓이
$("#mainPic").attr("height", 370); // 높이
});
});
</script>
'javascript, jquery' 카테고리의 다른 글
팝업 레이어 설정하기 (0) | 2014.10.11 |
---|---|
팝업창 자동 리사이즈(크로스 브라우징) (0) | 2014.10.11 |
ajax - ajaxStart, ajaxStop (0) | 2014.10.08 |
jquery - ajax (0) | 2014.10.07 |
텍스트 롤링(rolling) (0) | 2014.10.03 |