jquery accordion - set input focus for active accordion?
- by KnockKnockWhosThere
*Nevermind... figured it out... *
did it like this:
$("#accordion").accordion({
header:'h3',
active: '#section1',
autoheight: false,
clearstyle: true,
}).bind("change.ui-accordion", function(event,ui) {
$("#text1").focus();
});
I've got an accordion all set up, and each div has a…