$("#accordion").accordion({
change: function (event, ui) {
alert('event have to be changed')
},
changestart: function (event, ui) {
return false;
}
});
Is it possible to cancel the change event?
I am not sure about change but for other events in jqueryui returning false cancels the event.