This might be mundane but I'm having a hard time with it.
I would like to create a Jquery accordion. It's easy. I just have to theme the output of views. This is how the HTML needs to look.
Taxonomy Term
Node Title1
Node Title2
Node Title3
Node Title4
Taxonomy Term
Node Title 1a
Node Title 2a
Here is the code from the Jquery example that I want the Views output to emulate. Of course the div with class content will not have a picture (I could have used views accordion module to do that). It will have another div with an unordered list of node titles that link to their respective nodes. I don't even mind making a static views-view.tpl.php as long as the node titles are dynamic. I been experimenting with views_get_view and might figure this one by myself but I doubt that it would be the best practice.
<div class="set set2">
<div class="title"><img src="images/menu2.jpg" width="198" height="29" /></div>
<div class="content"><img src="images/menu-img-2.jpg" width="486" height="198" /></div>
</div>
<div class="set set3">
<div class="title"><img src="images/menu3.jpg" width="198" height="29" /></div>
<div class="content"><img src="images/menu-img-3.jpg" width="486" height="198" /></div>
</div>
<div class="set set4">
<div class="title"><img src="images/menu4.jpg" width="198" height="29" /></div>
<div class="content"><img src="images/menu-img-4.jpg" width="486" height="198" /><br />
</div>
</div>
Thank you all for your time reading this.