vote up 1 vote down star

I would like to put a table of contents at the top of an internal email newsletter that will allow readers to 'jump' down to the part of the newsletter that interests them. Something like:

<ul>
      <li><a href="#FUNDING">Funding Opportunities</a></li>
      <li><a href="#DEVELOPMENT">Professional Development</a></li>
      <li><a href="#BEST">Best Practices</a></li>
</ul>

Then 'further down' in the email newsletter have:

<h2><a id="FUNDING">Funding</a></h2>
<!--- news items about funding -->

<h2><a id="DEVELOPMENT">Professional Development</a></h2>
<!--- news items about professional development -->

<h2><a id="BEST">Best Practices</a></h2>
<!--- news items about Best Practices -->

This works fine in browser based HTML, but I have not had success getting it to work in various email clients (gmail, groupwise, outlook). I have however, received emails that appear to use a technique like above and I am able to 'scroll' the email. I understand that support in various clients will vary and that this is not necessarily a 'good' practice but this is an internal system and almost all recipients will be using GroupWise.

Any experienced insight into the specific additional markup that is needed (e.g. what would the base ref be?) would be greatly appreciated.

flag

62% accept rate

2 Answers

vote up -1 vote down

You should use the name attribute of the anchor tags, like this:

<h2><a name="best">Best Practices</a></h2>
link|flag
vote up 2 vote down

Try adding the 'name' attribute to the anchor as well as the 'id'.

<a id="FUNDING" name="FUNDING">
link|flag
This is not the issue; I did go ahead and put both in, but that does not fix the 'email client' scenario. As far as w3c and anchor tags using id: w3.org/TR/REC-html40/… – Brian Jun 25 at 18:56
Using @id is indeed best practice, but if you're writing HTML for emails, code like you would've done in the early nineties. See email-standards.org for more information. – ms2ger Jun 25 at 19:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.