If I post a form using Javascript like this to popup window:
Code:
function cForm() {
win = window.open('','myWin','toolbars=0');
document.myForm.target='myWin';
document.myForm.submit();
}
how can I know when the response to the post is done loading on the popup window? Seems I can't use win.document.onload because a blank document is loaded when popup window is initialized.