I have a JQuery UI dialog which is modal and has a black background with 50% opacity. Is it possible to make the background opacity fade from 0% to 50%? If so, how? Because c
You could also add this to fadeIn the modal:
$(loginForm).dialog({ resizable: false, open: function(){ $('.ui-widget-overlay').hide().fadeIn(); }, show: "fade", hide: "fade" });
Hope this helps :)