Make all jQuery Accordion sections always close on page load -
i have download jquery accordion site. don't have idea jquery. when site opens sections of accordion should close. made changes these options...
------------------------- //default ------------------------- jquery().ready(function(){ // simple accordion jquery('#list1a').accordion(); jquery('#list1b').accordion({ alwaysopen: false, autoheight: true }); -------------------------- //changed -------------------------- jquery().ready(function(){ // simple accordion jquery('#list1a').accordion(); jquery('#list1b').accordion({ alwaysopen: true, autoheight: false }); <--------------------------->
but it's not working.
i think want this:
jquery().ready(function(){ // simple accordion jquery('#list1a').accordion(); jquery('#list1b').accordion({ alwaysopen: false, active: false });
Comments
Post a Comment