I'm trying to open a popup window and then set some data, but I can't
seem to make it work. I'm sure I'm missing something obvious.
popwin = document.open(' mypop.html', \"external\" , \"width=\" + w
+\",height=\" + h +
\",resizable=no ,scrollbars=no, status=yes,loca tion=no,toolbar =no,menubar=no\ ");
popwin.document .data.user=user ;
mypop.html has a <form name=data> with an element named "user" in it.
Essentially, I want to be able to pop up a window with some populated
data in it, but I can't figure out how I can do it.
Thanks.
-Greg G
Comment