hassank1 Posted December 31, 2008 Share Posted December 31, 2008 Hii.. I've a window that open a popup.. where the popup contains a form.. I want the form to be submitted in the opener window .. I've tried : function Change_form_action(btn) { if(btn.name=="sendbtn") { document.numbersfrm.target = window.opener; document.numbersfrm.action = 'sendfrm.php?to_type=numbers'; } else if ... etc.. } but what happens is that a new window is opened and not the opener window ! Quote Link to comment Share on other sites More sharing options...
Psycho Posted December 31, 2008 Share Posted December 31, 2008 I don't think you can submit from one browser window to another like that. An alernative approach would be to have a hidden for in the parent page. When the user "submits" the child window page it runs a script that will populate the values of the child window form into the parent window form, then calls a function in the parent which closes the child window and submits the form in the parent. Quote Link to comment Share on other sites More sharing options...
hassank1 Posted December 31, 2008 Author Share Posted December 31, 2008 I've already found a solution and it's pretty simple window.opener.name="MyParent"; document.numbersfrm.target = "MyParent"; document.numbersfrm.action = 'sendfrm.php?to_type=numbers'; thx for help anyway Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.