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 ! Link to comment https://forums.phpfreaks.com/topic/138971-formtarget-windowopener/ 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. Link to comment https://forums.phpfreaks.com/topic/138971-formtarget-windowopener/#findComment-726832 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 Link to comment https://forums.phpfreaks.com/topic/138971-formtarget-windowopener/#findComment-726833 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.