PDA

View Full Version : Sending a form from a popup window


giuseppe74
07-12-2002, 10:48 AM
Hello,
i have a popup window with a form, i would like to send the form data to a page that will be loaded in the opener window.
How can i do this?

Thanks,

Giuseppe

joh6nn
07-12-2002, 10:59 AM
// this goes in your parent window
<script>
window.name = "someWindow";
</script>


// this is the form in your popup
<FORM TARGET="someWindow">

giuseppe74
07-12-2002, 11:15 AM
Really thanks! :)