Hi All, I need some assistance if possible to try and achieve a jQuery accordion system using category controlled channel entries.
Basically I need the category to output a list of each entry within a channel, when its entered so it creates a list. Below is the static example of what I want to achieve and just need some guidance on how I can get EE to output it correctly.
So, a channel with 4-5 categories and then each title entry (repeated) added within the list and repeated per category, like so
<h2 class="serviceheadings accordionButton">{example_category_one}</h2>
<div class="accordionContent">
<h3 class="serviceinternal">Lorem Ipsum</h3>
<ul>
<li><span>{title}</span></li>
<li><span>{title}</span></li>
<li><span>{title}</span></li>
</ul>
</div>
<h2 class="serviceheadings accordionButton">{example_category_two}</h2>
<div class="accordionContent">
<h3 class="serviceinternal">Lorem Ipsum</h3>
<ul>
<li><span>{title}</span></li>
<li><span>{title}</span></li>
<li><span>{title}</span></li>
</ul>
</div>This is probably straight forward enough but throw categories in to the mix and I just get confused and my brain turns to mush…trying to learn the proper and full use of them as I go along but would appreciate the help in the meantime, to help me get started.
Thanks guys