(새 문서: <script data-ad-client="ca-pub-4883081956509564" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>) |
|||
1번째 줄: | 1번째 줄: | ||
$(".touchicon").on("click",function(){ | |||
var obj = $(this); | |||
if( obj.hasClass("touchicon-add") ){ | |||
obj.hide(); | |||
obj.next().show(); | |||
obj.parent().parent().next().show(); | |||
}else{ | |||
obj.hide(); | |||
obj.prev().show(); | |||
obj.parent().parent().next().hide(); | |||
} | |||
}); |
2020년 9월 4일 (금) 13:32 판
$(".touchicon").on("click",function(){ var obj = $(this); if( obj.hasClass("touchicon-add") ){ obj.hide(); obj.next().show(); obj.parent().parent().next().show(); }else{ obj.hide(); obj.prev().show(); obj.parent().parent().next().hide(); } });