Hello,
I have this code to popup a JQuery dialog box:
$( "#dialogBox" ).dialog({
height: 585,
width: 620,
modal: true,
resizable: false,
show: {
effect: 'fold',
complete: function() { $("#txtEmail").focus(); }
}
});
The dialog box appears correctly except for the effect. No matter what effect I choose, the box appears the same way (grows from top left to bottom right).
Any ideas? Thanks.