You can't specify an option like that. Either specify it on init:
$('selector').accordion({
change: function() { alert('hello'); }
});
or modify the options after init:
$('selector').accordion('option', 'change', function() { alert
('hello'); });
but not in your actual method call.
On Nov 27, 11:35 am, Ahmidou <[email protected]> wrote:
> Hi
> This is my first post here :)
> I would like to know how to launch a callback after accordion's
> methods ie:
>
> $('selector').accordion( 'activate' , false,{change:function(){alert
> ('hello')}})
>
> Regards
> A.
--
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.