썸네일 이미지 클릭했을 때 본문 이미지 바꾸기
$('.btnImage').click(function(){ changeImg(); var tmpVal = $(this).attr('id'); $(this).attr('src', $(this).attr('src').replace('off.gif','on.gif')); $('#divImage').attr('src', '/img/introduction/img_online8_'+tmpVal+'.jpg'); }); function changeImg(){ $('.btnImage').each(function(){ $(this).attr('src', $(this).attr('src').replace('on.gif','off.gif')); }); }