I use jQuery UI to show a dialog, but I don't know how to call a function if dialog is closed by user. This is the code:
function Configure_Popup() {
$("#dialog").dialog({
autoOpen: false,
show: {
effect: "blind",
duration: 100
},
hide: {
effect: "blind",
duration: 100
}
});
$(".opener").click(function () {
$("#dialog").dialog("open");
});
}
How can I do that please?