Using the example from here:
http://jqueryui.com/demos/accordion/#custom-icons
I want to have those arrows and the accordion working the exact same, however my current code is as follows with static html (uses UL and LI's):
<li id="ecartcategorieswidget-3" class="widget-1 widget-first widget sbg_widget Shop widget_ecartcategorieswidget">
<h2 class="widgettitle sbg_title">Categories</h2>
<ul class="ecart_categories">
<li><a href="http://">category1</a>
<ul class="children">
<li><a href="http://">sub-category</a></li>
<li><a href="http://">sub-category</a>
<ul class="children">
<li><a href="http://">sub-sub-category</a></li>
</ul></li>
</ul>
</li>
<li class="current><a href="http://">category2</a>
<ul class="children">
<li><a href="http://">sub-category</a></li>
<li><a href="http://">sub-category</a>
<ul class="children">
<li><a href="http://">sub-sub-category</a></li>
</ul></li>
</ul>
</li>
</ul>
</li>
How do I make the JQuery example work for my above html code, so that category1 and category2 is like section 1 and section 2 in the example jQuery url provided? When clicking on either category, all the sub and sub-sub categories within that category slide down together. It's literally a one-level accordion with 2 categories.
Thanks!