Click to See Complete Forum and Search --> : Are Page Jump Links in Frames Possible?


saintbernard
01-29-2003, 10:31 PM
One more question and I'm good to go. :)

I'm creating a page that has three frames on it.

Frame A runs along the left side of the page and is where I have all the site links for the page (i.e.: "home", "site map", "links", "contact me", all that jazz.) Frame A stays the same all the time no matter what.

Frame B runs along the very top 10 % of the right side of the screen and has a series of page jumps to certain points in the document that is in Frame C.

Frame C is the remaining 90 % of the right side and contains the data. I've got the page jump links inserted already and they work as far as taking you to the points where they're supposed to.

What I want to do is be able to click on the link in Frame B and have that link jump to the point in the document in Frame C that was clicked on in Frame B. I don't want another window to open and I don't want the data clicked on in Frame B to appear in Frame B. (The effects I'm getting right now.)

How do I write my page jump link in Frame B up so that it will work right?

Jennifer

Stefan
01-30-2003, 01:08 AM
<a target="c" href="blabla.html#jumppoint">link</a>

In blabla.html

...

<div id="jumppoint">
...

saintbernard
01-30-2003, 02:43 AM
Originally posted by Stefan
<a target="c" href="blabla.html#jumppoint">link</a>

In blabla.html

...

<div id="jumppoint">
...

This is opening a new web page rather than bringing the information up in the bottom frame.:confused:

Jennifer

I found my mistake and it works perfectly now! Thanks a bunch! :D :D :D

Jennifer

Stefan
01-30-2003, 05:17 AM
You're welcome :)