You are here: irt.org | BBS | Re: In child window, submit form to parent window [This BBS is closed]
Posted by Dan A on July 08, 1998 at 18:32:39:
In Reply to: In child window, submit form to parent window posted by vanessa beca on July 08, 1998 at 11:38:28:
: When I submit the form in my pop-up window, I want to submit the
: form to the html file in the parent window. The submit works except
: the form action = xxx.html file in the pop-up window loads
: in the child window.
: Can this be done?
: Thanks!!!
specify the target in the form tag.
First You must name the parent window.
Put the following javascript:
<script>
window.name = "head"
</script>
then, in the form tag put target=head.
Follow-ups:
You are here: irt.org | BBS | Re: In child window, submit form to parent window [This BBS is closed]