How can I get the accordion widget to be closed when the page loads? This is the code I'm using:

//Accordion
    $( ".accordion" ).accordion({
        autoHeight: false,
        navigation: true,
        collapsible: true,
        active: false
    });

Also, it may be unimportant but the accordion divs are inside dialog divs.

link|improve this question

"accordion divs are inside dialog divs" - what do you mean? Can you paste your HTML? The jQuery accordion implementation has semantic requirements. The markup requires pairs of headers and divs: docs.jquery.com/UI/Accordion – Shane Garelja Feb 16 '11 at 15:35
feedback

1 Answer

up vote 2 down vote accepted

The active option being set to false should (according to the docs) cause the menu to be collapsed on page-load (though it specifically requires collapsible: true (which you already have).

If this isn't already in a $(window).load() or $(document).ready() then it needs to be wrapped in one of those; if it is so wrapped then without a demo (perhaps JS Fiddle, or JS Bin?) it's difficult to suggest what might be happening, or going wrong.

Is the remainder of the JavaScript (beyond the call to .accordion() being executed? If not there might be a JS error, somewhere. It might be worth running it through JS Lint to be sure.

link|improve this answer
The code is not in a $(document).ready() but the script is at the end of the body, so it should not matter right? All of the javascript is running flawlessly except for this. – Yottagray Feb 16 '11 at 15:46
I'd recommend trying it in a $(document).ready(), if only to rule out one possible solution. I'd definitely recommend posting a demo (on either of the sites in my answer) so that we can see it working/not-working and suggest answers. Without the html it's difficult to help. – David Thomas Feb 16 '11 at 15:47
In preparing a jsbin to show you, I discovered there is an odd conflict between a colorpicker plugin I was using and the dialog widget. Thanks for your help. – Yottagray Feb 16 '11 at 16:05
@Yottagray: no problem at all, though I wish I'd been a little more specifically useful... :) – David Thomas Feb 16 '11 at 16:08
feedback

Your Answer

 
or
required, but never shown

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