Jquery トグル機能を使用して表示/非表示にしているコンテンツがいくつかあります。
各見出しの先頭に矢印を追加しましたが、コンテンツが切り替えられたときに、先頭に追加された矢印を下向きの矢印に変更したいと考えています。
これまでのコード:
$(document).ready(function(){
$('.show-hide-list h3 a').prepend('> ');//Prepend arrow
$('.show-hide-list li .show-hide-list-content').hide();//Hide content
$('.show-hide-list h3').click(function() {//Perform toggle when clicked
$(this).next('.show-hide-list-content').toggle();
//Need to change orientation of prepended arrow when toggled
return false;
});
});
html は次のとおりです。
<ul class="show-hide-list">
<li>
<h3><a href="#">Heading</a></h3>
<div class="show-hide-list-content">
Content to be toggled here.
</div>
</li>
</ul>
一度切り替えた矢印の向きを変更するにはどうすればよいですか?