View Single Post
aflegg's Avatar
Posts: 1,463 | Thanked: 81 times | Joined on Oct 2005 @ UK
#4
Further to RogerS' point, FBReader is not a web browser and - AFAIK - can't handle hyperlinks between HTML documents. It can, however, handle hyperlinks within a document.

The difference is:

Code:
<a href="two.html">Go to next document</a><br />
<a href="#second_half">Go to second half</a><br />
....
<a name="second_half">Second half starts here</a>
....
The first link ("Go to next document") will not be highlighted. The text "Go to second half" will, and clicking it will move the document to the point at which "Second half starts here" appears. This text won't be highlighted.

Last edited by aflegg; 2006-01-30 at 09:34. Reason: Prettifying HTML