read a text field from a new opened window

  • Thread starter Thread starter DaveF
  • Start date Start date
D

DaveF

This does not work
document.forms[0].wipSubject.value =
self.opener.document.forms[0].txtSubject.value;
 
<!--_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>
 
Back
Top