A
anna
I have a javascript that submits form to a new popup window. when the
user is done with the popup, they close it by clicking on a button
coded with window.close().
function popup(url){
var formObj = document.forms['frmMain'];
window.open(url,'frmNew','.....');
formObj.target='frmNew';
formObj.method = "post";
formObj.action = url;
formObj.submit();
}
A small window popups fine and closes fine. However, after the popup
window is closed, any submitform from the original form (frmMain in
this case) will open a new window instead of submit the form to the
same window. wonder what the problem is and how to correct it?
function submitform(url){
document.frmMain.action = url;
document.frmMain.method = "post";
document.frmMain.submit();
}
user is done with the popup, they close it by clicking on a button
coded with window.close().
function popup(url){
var formObj = document.forms['frmMain'];
window.open(url,'frmNew','.....');
formObj.target='frmNew';
formObj.method = "post";
formObj.action = url;
formObj.submit();
}
A small window popups fine and closes fine. However, after the popup
window is closed, any submitform from the original form (frmMain in
this case) will open a new window instead of submit the form to the
same window. wonder what the problem is and how to correct it?
function submitform(url){
document.frmMain.action = url;
document.frmMain.method = "post";
document.frmMain.submit();
}