javascript thread: How do you exchange data between 2 forms without using cookies?
In this case, whether you use POST or GET has no effect on what you want to.
The form's elements and their values are always available to javascript.
Therefore, using window.opener.formname.element.value from the 2nd window
will get you the data yuou want in the 1st window.
Jerry
----- Original Message -----
From: "bryan" <bry@i...>
To: "javascript" <javascript@p...>
Sent: Monday, August 12, 2002 12:25 PM
Subject: [javascript] RE: How do you exchange data between 2 forms without
using cookies?
>
> >If you are using a popup and not posting the data then use
> >window.opener.forms[0] to access the first form and read the data as
> you
> >would were you on the page itself.
> Hmm, yeah didn't think of that, preferable; my answer was predicated on
> using GET.
>
>
>
>
>
>
> ---
>
> Improve your web design skills with these new books from Glasshaus.
>
> Usable Web Menus
> http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
> r-20
> Constructing Accessible Web Sites
> http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
> r-20
> Practical JavaScript for the Usable Web
> http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
> r-20
>