KSK
2/20/2018 - 10:45 AM

アコーディオンのすべてを開く、閉じる追加

$(function(){
	$(".all_open span.open").click(function(){
		$(this).parent().nextAll('dd').stop(true).slideDown();
		if(!$(this).closest(".all_open").hasClass("clicked")){
			$(this).closest(".all_open").addClass("clicked");
		}
	});
	$(".all_open span.close").click(function(){
		$(this).parent().nextAll('dd').stop(true).slideUp();
		if($(this).closest(".all_open").hasClass("clicked")){
			$(this).closest(".all_open").removeClass("clicked");
		}
	});
});