레이블이 toggle Image on off인 게시물을 표시합니다. 모든 게시물 표시
레이블이 toggle Image on off인 게시물을 표시합니다. 모든 게시물 표시

금요일

toggle Image on off

$(’#share’).css(‘cursor’, ‘pointer’).toggle(function() {
$(this).attr({
‘src’: $(this).attr(‘src’).replace(/_on/, ‘_off’),
‘check’: ‘share_false’
});
}, function() { //else와 같다
$(this).attr({
‘src’: $(this).attr(‘src’).replace(/_off/, ‘_on’),
‘check’: ‘share_true’
});
});