-
1. Re: How to keep a user on 1 page while viewing multiple pages?
Nancy O. Feb 16, 2013 12:47 PM (in response to lou4uandme)I wouldn't use frames or framesets for obvious reasons. But you could use an inline frame or iframe with links to individual viewer pages.
Iframe on main page:
<iframe name="iframe1" id="iframe1" height="400" width="500" allowtransparency="true" border="0" src="link_to_viewer1.html"></iframe>
Links in sidebar:
<ul>
<li><a href="link_to_viewer2.html" target="iframe1">Viewer2</a></li>
<li><a href="link_to_viewer3.html" target="iframe1">Viewer3</a></li>
<li><a href="link_to_viewer4.html" target="iframe1">Viewer4</a></li>
<ul>
Nancy O.
-
2. Re: How to keep a user on 1 page while viewing multiple pages?
lou4uandme Feb 16, 2013 4:05 PM (in response to Nancy O.)Nancy, Nancy Nancy ! Thank you!
You just solved my problems
and saved me hours of research on the net.
Although I am not quite sure what's the difference between an obsolete "Frames" VS newer "Iframe"
I don't really care, I just care that I can finish this site !
Thanks


