hi all,
is it possible to smoothly fadein a jquery modal dialog? (can't find anything in the docs). i've tried fadeTo but didnt help.
thanks in advance
hi all,
is it possible to smoothly fadein a jquery modal dialog? (can't find anything in the docs). i've tried fadeTo but didnt help.
thanks in advance
You can use the show
option (admittedly not well named, too general), like this:
$("#dialog").dialog({ show: 'fade' });
The close animation is the matching hide
option, for example:
$("#dialog").dialog({ show: 'fade', hide: 'drop' });