I have a table uniquely identifying each row with a time-stamp. I want to have an anchor for each row.
Is there a way to avoid having to create a new "anchor" column and having to programmatically write <a name = "(row.ID}}"
for each record?
If I have a unique time stamp in plain text format, can I create a virtual anchor?
The purpose is to have a user clicking on a reference to a comment from another page, auto-scroll to that comment, or, a user posting or editing a comment automatically scroll down to the row that he has just created or edited.
There are no element IDs and I don't want to write programming code to create the ID, for example:
<tr id="row9"><td>9</td></tr>
<tr id="row10"><td>10</td></tr>
I can, but was wondering if the plain text timestamp could be referenced some how. Rory has already mentioned that it's not possible without element ID.