

ID: 29
Viewed: 2968
Added: Nov 23, 2001
Version:



Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



Thank you for your vote. Please wait...
It appears you already voted for this snippet
It appears your vote value was empty


gets form variables from parent to show on popup. 2 parts to this setup.
<!---Head--->
check box below. there is 2 pages in that box.
<!---Body--->
'this page can be saved As anything you want:
<html>
<head>
<title>Untitled</title>
<script language="javascript">
Function go_now(){
window.Open ("child_data.htm", hotkeys="no", toolbars="no")
}
</script>
</head>
<body>
<form Name="form1">
<Input Type ="text" value="stuff" Name="textbox1" size="15">
<Input Type="button" value="click here!" onclick="go_now();">
</form>
</body>
</html>
'this page should be saved As child_data.htm:
<html>
<head>
<title>Untitled</title>
<script language=javascript>
Function set_form_data(){
var parent=window.opener.form1.textbox1.value;
window.document.form2.textbox2.value=parent;
}
</script>
</head>
<body onload="set_form_data();">
<form Name="form2">
<Input Type="test" Name="textbox2" size=15 disabled>
</form>
</body>
</html>
No Comments to show


Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.
Adding your comment. Please wait...
Thanks for adding your comment!. After further review it will be added.
There was a problem adding your comment. Please try again.
Please complete all the fields in the form before sending.