Zend app.I have a link in page1 pointing to specific section in page2:
<a href="mysite/index/index/#comments">link!</a>
my section “comments”:
<div name="comments">here my comments</div>
This is not working.And the link is loading the page without targetting to the specified div.
Where Am I wrong?
thanks
Luca
There is no
nameattribute fordivelements. Fragment identifiers are defined as referencing eitheraelements via theirname(old style, use it if you need to support Netscape 4) or any element via itsid(modern style).