Forum Moderators: open

Message Too Old, No Replies

navigate to particular place on page

code

         

texasville

7:16 pm on Mar 20, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I have seen this done but can't seem to make it work myself. I have a picture on one page and when I click on it I want to go to the page that has the information on this picture. The code i want would take me not only on that page but to the particular spot on that page from the picture.
Am I having a brain freeze here? Or is it not possible.

StupidScript

7:47 pm on Mar 20, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Brain freeze, it is! ;)

On the result page (photopage.html):

<a name="photo1"></a>

<img src="photo1.... etc>

On the link page:

<a href="photopage.html#photo1">Photo 1</a>

Clicking the link will take the visitor (a) to photopage.html which will (b) scroll down to the anchor named "photo1" on that page (if it exists.)

texasville

7:56 pm on Mar 20, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Thanks Stupid Script!
I had it and knew it but it wasn't until I looked at your reply I had left out the closing </a> tag. No workie like that.
65 hours of coding in 4 days. Total brain freeze. Thanks again.