Forum Moderators: open
[w3.org ]
Destination anchors in HTML documents may be specified either by the A element (naming it with the name attribute), or by any other element (naming with the id attribute).
Using your example the destination could be:
<h2><a name="WidgetLink">This Is The Destination Anchor</a></h2>
or:
<p id="WidgetLink">This Is The Destination Anchor</p>
Both work in FireFox.
If you still have a problem post a sample destination anchor that is not working.