I\'m editing some existing html where the javascript loads a another page inside an iframe. In the page is an html form. When I hit submit, I\'d like for the outer page to s
Target the form to the iframe:
<iframe name="foo"></iframe> <form target="foo"></form>
Try using the target attribute of the form tag. You can specify the frame.
target