You are here: irt.org | FAQ | JavaScript | Frame | Q422 [ previous next ]
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>