i have this dialog code
// load dialog to user signup
function new_user_signup()
{
$.get("/actions/_new_user_account.php",
function(data){
$("#dialog").html(data);
});
$("#dialog").dialog({ width: 400,resizable: false, position: 'top', draggable: false, title: 'Opret profil' });
}
if i click on X icon in top - right and try to open my dialog agin i can't but way?