Hi John-
On Wed, May 21, 2008 at 5:13 AM, John Harrison
<[log in to unmask]> wrote:
> You shouldn't have the filename or the hash (#) symbol in the anchor
> name. In the href they tell the browser to go to the specified file,
> then find the anchor with the name after the hash, so the value of your
> name attribute should just be:
>
> seriesX
I'm guessing (based upon Lynn's previous posts) that she's creating a
frame-based transform, which might be a potential source of the
confusion. In addition, I've found that using named anchors isn't
necessarily prefererable to adding id attributes to XHTML elements
(consider "<a name="whatever"></a><h1>...</h1>" vs. "<h1
id="whatever">...</h1>" - this is particularly true because transform
engines will often strip self-closing/empty tags (like "<a
name="whatever"/>"). In addition, Internet Explorer doesn't handle
such tags well either.
Mark
|