I need your help again.
So I have a simple list
<ul>
<li>First</li>
<ul class="blah">
<li>First a</li>
<li>First b</li>
<li>First c</li>
</ul>
<li>Second</li>
<li>Third</li>
</ul>
And so on.
So because I’m not very fluent in jQuery, I’m asking here and hoping to get an answer.
Ok so what I’d like is, when I click on the First the menu (ul class="blah") get hidden.
And then, when clicked it shows up again.
I think this is what you are looking for : http://jsfiddle.net/9uvgs/
This is some code I adapted from an accordion I used. It uses links as the click elements and not LI. So you might want to adapt it.