Example: this is the function i use to show a dialog
function pop_up_extra(div, titulo,h,w){
$( "#" + div ).dialog({
autoOpen: false,
show: "explode",
modal: true,
height: 'auto',
width: w,
title: titulo
});
$( "#" + div ).dialog( "open" );
$(".ui-widget-overlay").click (function () { $("#pop").dialog( "close" ); });
return false;
}
something like: http://jsfiddle.net/YcZFj/2/
how should I update the show method??
PS: please edit the title if you consider (i am spanish thinker)
How about
slideeffect ofshowoptions? Try this – http://jqueryui.com/demos/show/