Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q422 How can I get the results of a form submission to be displayed in another frame?

irt.org | Knowledge Base | JavaScript | Frame | Q422 [ previous next ]

Q422 How can I get the results of a form submission to be displayed in another frame?

In the form tag add a TARGET attribute that has a value which is the name of the other frame. For example:

<frameset cols="50%,*">
<frame src="apage.html" name="leftframe">
<frame src="bpage.html" name="rightframe">
</frameset>

In the leftframe you can have a form that targets the rightframe as:

<form action="cpage.html" target="rightframe">
<input type="submit">
</form>

Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb and Michel Plungjan
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.