Forum Moderators: open
is there a way (aside from using frames) to show the contents of a webpage inside aother web page.
For example, having a menu bar at the side where the user can click on different documents and then the documents load into another part of the page (for example a table cell or something)
or is the only way to do this with some back end technology?
thanks
There is an attrbute called target that allows you to target particular frames/iFrames. For example:
<iFrame name="myFrame" src="path/to/file.html">
You can have a link on the parent page that opens the (linked) page in the frame by:
<a href="path/to/file.html" target="myFrame" title="Link to File">...</a>
HTH