Forum Moderators: open

Message Too Old, No Replies

Page Linking Question

         

Khemikal

7:13 pm on Mar 24, 2004 (gmt 0)

10+ Year Member



Ok I thought I knew how to accomplish this, but obviously not.

I have two pages.

On page one I have 4 links that go to another page. I would like each of these links to correspond to a specific section within the other page. I was under the impression I would have to do this:

Page 1 link: [domain.com...] id)

Page 2 (section linked 2)
<a name="" id="">

I'm assuming I am doing something incorrect as it is not working. Suggestions?

Thank you,

Khem

Staffa

9:01 pm on Mar 24, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You almost got it :

Page 1 link: "http://www.domain.com/pagename.html#one"

Page 2 (section linked from page 1)
<a name="one">

g1smd

9:04 pm on Mar 24, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



<a href="http://www.domain.com/pagename.html#thisbit" title="popup text">link text</a>

<a name="thisbit"></a>

Khemikal

10:02 pm on Mar 24, 2004 (gmt 0)

10+ Year Member



Thank you for your help (kicks self).

Khem

g1smd

10:40 pm on Mar 24, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Easy to forget how this stuff works if you havent used it for a while.

I had to go look and see if using <link> to point to a CSS file used href="" or src="" the other day, as I just forgot.