| Intro Passing Data |
Name & Value Muliple Elements |
Variable & Value |
Data to Popup Data from Popup |
Opener Arrays |
Form Method |
Examples of passing data from a popup back to the opener.
In the opener
In the Popup
<script type="text/javascript">
<!--
function transfer(str){
if (opener && !opener.closed){
opener.document.f1.t1.value=str;
}
}
</script>
<form name="f1">