I need some help
I have a form in child window(popup window). And i want to send /post data to the parent window with javascript.
Here is my code
Code: Select all
<form name='form3' method='post' action='../ubr_file_upload1.php'> <table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td style="text-decoration:underline; cursor:hand" onclick="javascript:document.form3.submit();window.location='addressbook12332.php';window.opener.location.reload();">kkk2</td>
</tr>
</table>
<input name='EmailValueHidden' type='hidden' value='kkk2'/> </form>
Both windows are refreshed when i submit the form in popup, but i cannot get the POST data in a parent window.
Any solution ????