I think you mean:
Code:
defaultexpanded: [], //index of content(s) open by default [index1, index2, etc] [] denotes no content
This is more fully explained on the index page for the script:
http://www.dynamicdrive.com/dynamici...daccordion.htm
defaultexpanded:
Index(es) of content(s) that should be open by default in the format [index1, index2, etc], where 0=1st content, 1=2nd content etc. [] denotes no content should be open by default.
So, for example, if you wanted the first one expanded, you would use:
Code:
defaultexpanded: [0], //index of content(s) open by default [index1, index2, etc] [] denotes no content
If you want the second and third ones expanded:
Code:
defaultexpanded: [1, 2], //index of content(s) open by default [index1, index2, etc] [] denotes no content
Bookmarks