Hi,
I have a link on a page which opens a popup window that has a form on it. When the user submits the form I want the form data to return to the parent page and close the popup window. How can I do this?
First of all, what do you mean by "user submits the form"? The term "submit" means that the data is sent to server and processed via server-side scripts.
If you just want to send the values from pop-up to parent page, it's a different story. You can do it, for example, by simple variables assigning:
This will assign the value of some form field from pop-up to variable in parent page named 'var1'.
If this is what you need, just do the same for all desired fields, and close the popup:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.