「forum-title」をクリックすると、親「forum-topics-head」内の「subtopic-frame」が展開されます。このページには複数の "フォーラム トピック ヘッド" (関連するすべての子を含む) があります。
私が今持っている方法では、「フォーラムトピックヘッド」がトリガーですが、「フォーラムタイトル」がトリガーになりたいです。
html:
<div class="forum-topic-head">
<div class="forum-title">Forum Title</div>
<div class="subtopic-frame">
subtopic 1
subtopic 2
</div>
</div>
jquery:
$(document).ready(function(){
$(".forum-topic-head").click(function(){
$(this).children(".subtopic-frame").slideToggle("slow");
$(this).children(".expand").delay("200").fadeToggle();
});
});