auto close dialog in 2 sec
hi guys,... I have a dialog box popup for confirmation,... how can I auto close dialog in 2 sec,...
what I have in here apparently not working,... still need to close with "x"
this is my code:
<script>
$(function() {
$("#confirm_dialog").dialog({
hide: {
effect: 'fade',
duration: 2000
}
});
});
</script>
thanks in advance,
chris