I have a href link:
/agenda/#Testevent
Which in IE it goes to the corresponding <h4> element but in Firefox it doesn’t work.
I have used this named anchor:
<h4 name="#Testevent" id="#Testevent">
Any suggestions?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can either do this:
Or else you can also do this:
“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).”
Source: w3.org: Links in HTML documents