View Single Post
Old 10-21-2010, 11:18 AM   #15
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,561
Karma: 20150435
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
Quote:
Originally Posted by Perkin View Post
Doesn't have to be used for just chapters, I use it for footnotes.
Code:
<p><a id="return01"></a>Here’s a <a href="#footnote1">link</a> which jumps to the end footnote.</p>
and further on
Code:
<p><a id="footnote1"></a>A footnote is here.</p>
<p>When selecting here. <a href="#return01">RETURN</a></p>
And you don't have to use empty <a> elements, you can add the "id" to the <p>:

Code:
<p id="return01">Here’s a <a href="#footnote1">link</a> which jumps to the end footnote.</p>

<p id="footnote1">A footnote is here.</p>
<p>When selecting here. <a href="#return01">RETURN</a></p>
Jellby is offline   Reply With Quote