animate accordion issues
animate accordion issues
I can't seem get the accordion below to use nothing but the default slide am I doing something wrong?
$(
"#accordion"
).accordion({ animated:
'bounceslide'
, change:
function
(event, ui) {
$(ui.oldContent).find(
':checkbox'
).attr(
'checked'
,
false
);
$(
'#accordion .bt'
).attr(
'disabled'
,
true
);
}
});
I even tried making seperate statements like
$(
"#accordion"
).accordion({ animated:
'bounceslide')
but no luck..doesn't perform the bounceslide or the fold I've tried as well jquery 1.4.2
Topic Participants
davide128