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

How can I edit my VIM config so that Vim treats ".ejs" files the same as it currently treats my html files? -

Python __call__ special method practical example -