I have a list inside a li which needs to slide into view when the parent li is clicked.
My code works nicely but if i click any li all of the sub lists show where as i want it only to apply to the one that was clicked...
$("#offering li").click(function() {
$("#offering li ul").animate({height: "toggle"}, 1000);
});
<ul id="offering">
<li class="t current"><a href="#solutions"><span>sage solutions</span></a>
<ul>
<li><a href="#">50</a></li>
<li><a href="#">200</a></li>
<li><a href="#">CRM</a></li>
</ul>
</li>
<li class="m"><a href="#management"><span>solutions</span></a>
<ul>
<li><a href="#">50</a></li>
<li><a href="#">200</a></li>
<li><a href="#">CRM</a></li>
</ul>
</li>
<li class="b"><a href="#thirdparty"><span>third party additions</span></a></li>
</ul>