| View previous topic :: View next topic |
| Author |
Message |
Grapes n00b

Joined: 21 Jan 2003 Posts: 43
|
Posted: Fri Feb 21, 2003 4:56 pm Post subject: Web page help |
|
|
| I'm writing a web page with relative links. I want to click on the link and jump to a certain part of the page or a certain part of another page. Meaning i don't want to stat at the top of a web page, rather another part somewhere in the middle. I hope someone knows what i mean. I think i'll need to use javascript. Any idea how to do this or a link to a page that can help me? thanks alot. |
|
| Back to top |
|
 |
-JeaN- Apprentice


Joined: 25 Nov 2002 Posts: 211 Location: PaRiS :D
|
Posted: Fri Feb 21, 2003 5:29 pm Post subject: |
|
|
what you need i think is anchors.
To do this put somewhere in middle of page something like this :
| Code: | | <a name="middle"></a> |
Then to make a link to that page and be move on middle, you'll put this link :
| Code: | | <a href="page.htm#middle">Link to middle</a> |
Greets |
|
| Back to top |
|
 |
|