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

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -