The Accordion is one of the handy interface widgets that can be generated using jQuery UI. There are several optional settings you can add into the function call, including animation, auto-height, etc. If you find it is not working on IE7try adding "animated:false" as one of the options.
If you are running a debugger on IE, and see the error "invalid option on line 486" this is definitely the problem.
Ads by Google
Posted by ellen at December 09, 2009 05:06 PM
Working code example:
<script type="text/javascript">
$(function() {
$("#accordion").accordion({ header: "h3",autoHeight:false,animated: false});
});
</script>
Ads by Google
thanks a lot... i worked for me..
Thank you very much. This works for me.
Muchísimas gracias, estuve toda una mañana intentando solucionar el error en IE7 y con tu comentario al fin pude arreglarlo.
PD: La solución también sirve para IE6.
Saludos desde Santiago - Chile
Saved my day! Thanks a lot!