Here's the scenario, we have applications that are iframed within our pages.
I have 2 pages, one will have a simple form:
<form method="get" action="iframed.html">
Zip Code:
<input id="txtZipCode" type="text" name="ZipCode" />
<input id="btnSubmit" type="submit" value="Submit" />
</form>
And another that pulls the info into a form that is iframed within the page.
<iframe src="blahblahForm.html" ></iframe>
How do I pull the Zip Code that was entered on the first page, and filled into the page with the iframed form?
Thank you