I know when you call the dialog you can use
.dialog({
show: 'fade',
hide: 'fade'
});
But is there any support for options?
e.g.
.dialog({
show: {effect: 'fade', speed: 1000},
hide: {effect: 'fade', speed: 500}
});
or even
.dialog({
show: {effect: 'fade', {speed: 1000}},
hide: {effect: 'fade', {speed: 500}}
});
I am using 1.8.14
Try
durationinstead ofspeed. Like this…You can also include options like
easing,queue, and even acompletecallback function. It looks like most of the options accepted by the.animate()function are accepted in theshowandhideproperties.