Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a site that has a dynamically generated FAQ and I'm trying to get nested accordions working. The problem is, only the first collection of questions take on the ui-accordion class.

Here's my code: http://jsfiddle.net/SmFdt/

(I just copied the source of the page and stripped out most of the text)

What am I doing wrong?

share|improve this question
are all the <div> tags and verbose class names necessary perhaps use some <ul><li> elements, give the code a spruce up then look at it again. – T I Dec 31 '11 at 4:56
You should post your code here instead of relying on jsfiddle. – Bill the Lizard Jan 2 '12 at 16:47

2 Answers

up vote 7 down vote accepted

You've got the same id assigned to multiple divs. Try the following instead:

HTML

<h1>Frequently Asked Questions</h1>

<div id="faqs-container" class="accordian">
    <h3><a href="#">One</a></h3>
    <div class="accordian">
        <h3><a href="#">A</a></h3>
        <div>AAAAAAAAAA</div>
        <h3><a href="#">B</a></h3>
        <div>BBBBBBBBBB</div>
    </div>
    <h3><a href="#">Two</a></h3>
    <div class="accordian">
        <h3><a href="#">A2</a></h3>
        <div>AAAAAAAAAA2</div>
        <h3><a href="#">B2</a></h3>
        <div>BBBBBBBBBB2</div>
    </div>
</div>

JavaScript

$("div.accordian").accordion({
    autoHeight: false,
    collapsible: true,
    active: false
});

Link to example: http://jsfiddle.net/SmFdt/1/

share|improve this answer
Thanks. I had such a mess, I didn't realize the IDs were screwing things up. – smedrick Dec 31 '11 at 21:02

Try this http://jsfiddle.net/SmFdt/3/

The reason it was not working was you were using the same id for multiple divs. I have changed the ids to classes.

On a side note, you have lot of code to display the accordion. You may possibly want to consider reducing some code. (e.g. no need of <p> inside <div>. You can control the spacing using CSS margin and padding properties.)

share|improve this answer
The paragraph tag inside the div makes a lot more sense (although still ridiculous) if you see the finished product. All the Q's and A's are coming from a database that was generated by a user, using a tinyMCE form. Both you and Phil were right...I just need to do some house-keeping in this app. – smedrick Dec 31 '11 at 21:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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