I'm using the Superfish jQuery menu system and have a requirement to show all children regardless of level. The menu only shows the children of the selected item. Perhaps someone can help me figure how to modify the code to make it work this way.
HTML example of a node:
<li class="root"><a href="#" title="Training" class="root">Training</a>
<ul>
<li class="sub"><a href="#" title="Workshops - Classroom" class="sub">Workshops - Classroom</a>
<ul>
<li class="sub"><a href="#" title="Business Analytics" class="sub">Business Analytics</a></li>
<li class="sub"><a href="#" title="Software Applications" class="sub">Software Applications</a></li>
<li class="sub"><a href="#" title="Selling Skills" class="sub">Selling Skills</a></li>
<li class="sub"><a href="#" title="Wal-Mart Focused" class="sub">Wal-Mart Focused</a></li>
</ul>
</li>
<li class="sub"><a href="#" title="Public Workshop Schedule & Registration Form" class="sub">Public Workshop Schedule & Registration Form</a></li>
<li class="sub"><a href="#" title="Webinars" class="sub">Webinars</a></li>
</ul>
</li>
How it looks now:
How it needs to look: