Yes, I'm trying to go to this anchor embedded in a layer but I can't get it to work. I use the same URL you do, but whether my code is the way I had it above, or like it is below, it won't jump to the place on the page. My first question is will anchors not work if they are embedded in a layer?
Then, I thought maybe it wasn't working because I was creating all of the script dynamically (php of course) and that the tag wasn't there when the URL is looking for the anchor to jump to. So the second question is this true? Can you not create anchor tags dynamically and expect the page to jump to that tag?
<div id="bodyContent">
<a name="one" id="one"></a>
<div id="layer1">
</div>
<a name="two" id="two"></a>
<div id="layer2">
</div>
<a name="three" id="three"></a>
<div id="layer3">
</div>
</div>
NOW, I'm still using the code above, I've taken the layer creation out of the php section and just allow it to spit the content in. My anchors are static. But still not working, any direction?