Click to See Complete Forum and Search --> : links in a page that directs to certain paragraphs in the same page


meme
05-13-2007, 04:59 PM
Hi,

I would like to know how to have some links in a page that directs to ceratin paragraphs/section within the same page.

For example if the user is reading paragraph10 in a page and there's a text within that pargraph that refrences paragraph 1.

Pargaraph 10
Some text here text text text..... Please paragraph1 for terms and conditions

Onclicking on the hyperlink paragraph1 the user should be on that part of the page.

I hope I am making sense

abou.hmed
05-13-2007, 07:09 PM
just use on the link
<a href="#paragraph1">paragraph1</a>
and on the beginning of the paragraph 1 add this <a name="#paragraph1"></a>

tca
05-13-2007, 07:35 PM
Actually you can use ID to the same thing with a little less coding.

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

Then in your <p> tag (or any other block element): <p id="para1" class="cssForParagraph">

TC