hi i am trying to make a wizard for first time i want to disable all accordion tabs when i click on the link it enable next tab and open it..
i hve this code but it disable all tabs 🙁
thanks
$(function() {
$("#list1a").accordion({
autoHeight: false,
navigation: false
});
});
$("#list1a").accordion("disable");
$("#list1a").accordion("activate", 2 );
Don’t use the accordion for that, it’s not intended for wizardry. And since there’s no wizard component available in jquery UI, lets make our own 😉
html:
javascript plugin:
javascript impl:
Ofcourse.. you’d have to theme it yourself, though copy/pasting and renaming accordion styles gets you a long way. A nicer way would be to make an official wizard widget out of this.