Dialog og auto valg
Jeg har et jauqyer dialog vindue, og jeg ønsker at hvis der går mere end 30 sek. og brugeren ikke trykker på YES/No så skal funktionen AutoChoose udføres. Hvordan kan det gøres?function AutoChoose()
{
...do something
}
function Choose() {
try {
$(function () {
$('#Choose').dialog({
autoOpen: true, width: 400, height: 150, resizable: false, modal: true, position: 'center', draggable: false,
buttons: {
"YES": function () {
$(this).dialog("close");
YES();
},
"No": function () {
$(this).dialog("close");
No();
}
}
});
});
} catch (e) { }
}