squi
12-19-2005, 05:05 PM
How do i pass a querystring (value from a form) to a PopUp window?
<FORM name="fName" method=POST action="">
<input name=myStuff value="passThisValue123">
<a href="window-pop.html?myStuff" onClick="window.open(this.href, 'pop window', '')">
<img src="img.gif">
</a></FORM>
??
How do I extract it in window-pop.html? I need to put it into another form.
I appreciate any help. It seems simply enough, but I can't figure it out.
<FORM name="fName" method=POST action="">
<input name=myStuff value="passThisValue123">
<a href="window-pop.html?myStuff" onClick="window.open(this.href, 'pop window', '')">
<img src="img.gif">
</a></FORM>
??
How do I extract it in window-pop.html? I need to put it into another form.
I appreciate any help. It seems simply enough, but I can't figure it out.