以下のように、子要素のクリックで親divを折りたたもうとしています
HTML
<div class="expand">
<h3>expand this div</h3>
<a href="#" class="collapse" style="display:none;">Collapse</a>
</div>
CSS
.expand{
border:2px dotted green;
}
jQuery
$('.expand').click(function(){
$(this).stop().animate({
width:'300px',
height:'300px'
});
$('.collapse').show();
});
$('.collapse').on('click',function(){
$('.expand').stop().animate({
width: '300px',
height:'50px'
});
});
それは機能していません。私も使用してみまし$(this).parent().animation()
たが、それも機能しません。
ここでどのような変更を行う必要がありますか?