faqts : Computers : Programming : Languages : JavaScript : Links

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

3 of 4 people (75%) answered Yes
Recently 3 of 4 people (75%) answered Yes

Entry

How can I create Links WITHIN the same webpage?

Mar 30th, 2002 01:57
Choo Hoo, Sid Dean,


Ex:

<a href="#p1">Paragraph 1</a>

<a name="p1"></a>

In the above example if the link "Paragraph 1" is clicked it will jump 
to wherever <a name="p1"></a> is on the page.

p1 can be named anything, I just used that for this example.