D DaveF Jan 2, 2005 #1 This does not work document.forms[0].wipSubject.value = self.opener.document.forms[0].txtSubject.value;
This does not work document.forms[0].wipSubject.value = self.opener.document.forms[0].txtSubject.value;
D Daniel Fisher\(lennybacon\) Jan 3, 2005 #2 <!--_test.htm --> <html> <body> <form> <input type="text" value="myvalue" name="txt" /> </from> </body> </html> <!-- opener.htm --> <html> <body> <script language="javascript"> var host=open("_test.htm","host","width=400,height=100,top=150"); alert(host.document.getElementById('txt').value); </script> </body> </html>
<!--_test.htm --> <html> <body> <form> <input type="text" value="myvalue" name="txt" /> </from> </body> </html> <!-- opener.htm --> <html> <body> <script language="javascript"> var host=open("_test.htm","host","width=400,height=100,top=150"); alert(host.document.getElementById('txt').value); </script> </body> </html>