up vote 67 down vote favorite
12
share [g+] share [fb]

When I want to refer to some part of a webpage with the "http://example.com/#foo"-method, which one is The One to use:

<h1><a name="foo"/>Foo Title</h1>

or

<h1 id="foo">Foo Title</h1>

I know that both work, but are they equal, or do they have semantic differences?

Edit: The (X)HTML-dialect I'm working on is HTML5, but don't let that constrain your answers and feel free to answer dialect-agnostically.

link|improve this question

76% accept rate
What (X)HTML version? – Gumbo Jan 27 '09 at 19:06
feedback

9 Answers

up vote 58 down vote accepted

According to the HTML 5 specification, 5.9.8 Navigating to a fragment identifier:

For HTML documents (and the text/html MIME type), the following processing model must be followed to determine what the indicated part of the document is.

  1. Parse the URL, and let fragid be the component of the URL.
  2. If fragid is the empty string, then the indicated part of the document is the top of the document.
  3. If there is an element in the DOM that has an ID exactly equal to fragid, then the first such element in tree order is the indicated part of the document; stop the algorithm here.
  4. If there is an a element in the DOM that has a name attribute whose value is exactly equal to fragid, then the first such element in tree order is the indicated part of the document; stop the algorithm here.
  5. Otherwise, there is no indicated part of the document.

So, it will look for id="foo" followed by name="foo"

Edit: As pointed out by @hsivonen, in HTML5 the a element has no name attribute. However, the above rules still apply to other named elements.

link|improve this answer
4  
There’s no implied relationship between that algorithm and validity. The <a name> is invalid in HTML5 as currently drafted. – hsivonen Jan 27 '09 at 19:33
1  
Actually it does not apply to other "named elements". As far as the name attributes goes it just applies to <a name>. However, that attribute may not be used by authors. It just has to be honored by user agents for older HTML pages. – Anne May 18 '09 at 18:51
feedback

You shouldn’t use <h1><a name="foo"/>Foo Title</h1> in any flavor of HTML served as text/html, because the XML empty element syntax isn’t supported in text/html. However, <h1><a name="foo">Foo Title</a></h1> is OK in HTML4. It is not valid in HTML5 as currently drafted.

<h1 id="foo">Foo Title</h1> is OK in both HTML4 and HTML5. This won’t work in Netscape 4, but you’ll probably use a dozen other features that don’t work in Netscape 4.

link|improve this answer
feedback

I have to say if you are going to be linking to that area in the page... such as page.html#foo and Foo Title isn't a link you should be using:

<h1 id="foo">Foo Title</h1>

If you instead put an <a> reference around it you're headline will be influenced by an <a> specific CSS within your site. It's just extra markup, and you shouldn't need it. It'd highly recommend to going with placing an id on the headline, not only is it better formed, but it will allow you to either address that object in Javascript or CSS.

link|improve this answer
feedback

ID method will not work on older browsers, anchor name method will be deprecated in never HTML versions... I'd go with id.

link|improve this answer
Do you have a source for those claims? Don't get me wrong; I'm just generally interested. – Henrik Paul Jan 27 '09 at 19:16
2  
That sheds no light on “will not work on older browsers”. – Which browsers are these, apart from Netscape 4?? – Robert Siemer Jul 29 '11 at 17:36
feedback

There's no semantic difference; the trend in the standards is toward the use of id rather than name. However, there are differences that may lead one to prefer name in some cases. The HTML 4.01 specification offers the following hints:

Use id or name? Authors should consider the following issues when deciding whether to use id or name for an anchor name:

  • The id attribute can act as more than just an anchor name (e.g., style sheet selector, processing identifier, etc.).
  • Some older user agents don't support anchors created with the id attribute.
  • The name attribute allows richer anchor names (with entities).
link|improve this answer
2  
To be clear, when they say "older user agents" they mean REALLY old user agents. I wouldn't worry about that. – Eli Jun 25 '09 at 19:56
HTML5 allows “rich” IDs as well. Does anyone have version numbers of browsers with a market share larger than 0.1% that can’t handle id-anchored fragments? – Or is the dinosaur Netscape 4.7 actually the most spread one? – Robert Siemer Jul 29 '11 at 17:39
feedback
<h1 id="foo">Foo Title</h1>

is what should be used. Don't use an anchor unless you want a link.

link|improve this answer
feedback

The second sample assigns a unique ID to the element in question. This element can then be manipulated or accessed using DHTML.

The first one, on the other hand, sets a named location within the document, akin to a bookmark. Attached to an "anchor", it makes perfect sense.

link|improve this answer
feedback

The whole "named anchor" concept uses the name attribute, by definition. You should just stick to using the name, but the ID attribute might be handy for some javascript situations.

As in the comments, you could always use both to hedge your bets.

link|improve this answer
I would use both too – Primetime Jan 27 '09 at 19:02
When using both, are the id:s and names globally unique? as in, can I use the same string as both the id and the name? – Henrik Paul Jan 27 '09 at 19:13
You can, but some people think it's bad practice. – Alex Fort Jan 27 '09 at 19:18
1  
According to the HTML specification, if both are present, name and id should be identical. It also says that names and ids are in the same namespace. The HTML validator service doesn't check for these, and I doubt browsers care, but they seem like good guidelines to follow anyway. – erickson Jan 27 '09 at 19:40
Reality redefined! <a name... was ill from the beginning, and CSS link styling makes it even sicker. – Robert Siemer Jul 29 '11 at 17:42
feedback

Just an observation about the markup The markup form in prior versions of HTML provided an anchor point. The markup forms in HTML5 using the id attribute, while mostly equivalent, require an element to identify, almost all of which are normally expected to contain content.

An empty span or div could be used, for instance, but this usage looks and smells degenerate.

One thought is to use the wbr element for this purpose. The wbr has an empty content model and simply declares that a line break is possible; this is still a slightly gratuitous use of a markup tag, but much less so than gratuitous document divisions or empty text spans.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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