したがって、ページにこのマークアップを含むいくつかのコンテナーがあります。
<div class="box w400">
<div class="box-header">
<span class="expand-collapse">expand/collapse</span>
<h3>Heading</h3>
</div>
<div class="box-content">
<p>Some content here...</p>
</div>
</div>
そして、.expand-collapseスパンをクリックした後、.box-content divが上下にスライド(トグル)することを達成しようとしています。
これが私が使用しているjQueryです。これを最も近い()で達成しようとしています:
$(document).ready(function() {
$('.expand-collapse').click(function() {
$(this).closest('.box-content').slideToggle('slow');
});
});
しかし、何らかの理由で機能していません:(