how do i open an html file in one frame from a link in another? (for example):
_________________________
| | |
| | |
| | |
| | NEW |
| LINK | |
| | PAGE |
| | |
| | |
| | |
| | |
--------------------------
Printable View
how do i open an html file in one frame from a link in another? (for example):
_________________________
| | |
| | |
| | |
| | NEW |
| LINK | |
| | PAGE |
| | |
| | |
| | |
| | |
--------------------------
Try:
<a href="new.html" target="framename">Link</a>
where "framename" is the name of the frame where "new.html" will be loaded into.
I think that's what you needed