I am using the simple accordian script found here in the noaccordian mode to behave like a standard expandable menu example here but the nested menu under classes is not respecting the noaccordian class and is behaving as an accordian, how can I stop this happening ?

I want the nested menu to have the ability to have multiple sections open as well.

link|improve this question

60% accept rate
feedback

1 Answer

I think you need to add the class="noaccordion" to the nested ul's as well within the Classes menu. For example:

<li> <a href="#">Classes</a>
    <ul class="menu nestedmenu acitem noaccordion">

      <!-- Repeat this LI -->
      <li><a href="#">Built-in Electric &amp; Gas Ovens</a>
        <div class="acitem panel">
          <ul class="noaccordion">
            <li>
              <label>
                <input type="checkbox" name="cat[]" value="17" class="ovens" />
                Electric: Double</label>
            </li>
            <li>
              <label>
                <input type="checkbox" name="cat[]" value="18" class="ovens" />
                Electric: with Microwave</label>
            </li>
            <li>
              <label>
                <input type="checkbox" name="cat[]" value="25" class="ovens" />
                Gas: Single</label>
            </li>
            <li>
              <label>
                <input type="checkbox" name="cat[]" value="16" class="ovens" />
                Electric: Single</label>
            </li>
          </ul>
        </div>
      </li>...

I've created a quick fiddle that show it working as I understand you want it to. I've only applied the noaccordion code to the first few items.

link|improve this answer
I have updated my example page with your suggestion but it doesn't work the same as your fiddle example, I stripped down my example to the absolute bare minimum of code but the nested menu still acts as an accordian – I-CRE8 Dec 21 '11 at 12:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.