I am using jQuery accordion as step by step wizard to enter user information.
-> Account Information
-> Personal Information
-> Additional Info
When user clicks next button in "Account Info", "Personal Info" div must open. What I am currently doing is, destroying the accordion and recreating it.
$("#Accordion").destroy().accordion({active: "#Personal", collapsible:true, autoHeight: false, header: "> div > h3"});
Is there a way to activate "personal information" without recreating the accordion?
Many Thanks!
Use the option setter method:
Check documentation for more details: api.jqueryui.com/accordion/#option-active