I have an asp.net app that does some validation...then fires this after a save of an entry..
so instead of the alert I would like 5 seconds to go by, then close the window...
thanks,
dlc
Code:
function projectSaveClose() {
alert('Project Saved Successfully!');
window.close();
}
so instead of the alert I would like 5 seconds to go by, then close the window...
thanks,
dlc