Hi Guys, I was wondering how to stop a change between accordion sections? I am aware of the "changestart" event which I can bind to:
http://jqueryui.com/demos/accordion/#event-changestart But it seems if I return false it still changes anyway? For example the following doesn't stop the accordion from switching: $(".accordion").accordion({ header: "h3", clearStyle: true, autoHeight: false, change: function(event, ui) { return false; }, changestart: function(event, ui) { return false; } }); Any tips? -- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.
