Aqui mi codigo :
index.php => Pagina padre
Código HTML:
Ver original
<html> <head> <script language="javascript"> function Open() { var sValue = window.showModalDialog('proceso.php','SelectValueWindow'); document.getElementById("Text1").value = sValue; document.getElementById("Text2").value = sValue; } </script> </head> <body> <form name="frm"> <P> <INPUT id="Text1" type="text" name="Text1"> <INPUT id="Text2" type="text" name="Text2"> <INPUT id="Button1" type="button" value="Button" name="Button1" onClick="Open();"> </P> </form> </body> </html>
proceso.php => Pagina hija
Código HTML:
Ver original
<html> <head> <script language="javascript"> function Close() { window.returnValue = document.frm.Text1.value; window.returnValue = document.frm.Text2.value; window.close(); } </script> </head> <body> <form name="frm"> <P> <INPUT id="Text1" type="text" name="Text1"> <INPUT id="Text2" type="text" name="Text2"> </form> </body> </html>