Question

I am no coder, but know enough HTML to get the job done.

I have simple anchors for in-page linking and they work in every browser but Chrome.

What is the average joe explanation of what I can do to get them to work?

[a title="Important Safety Information" href="#isi"] Important Safety Information [/a]

[a id="ISI" name="ISI"][/a]

Page with anchor link: http://educationexchangehcp.ndei.org/novo/bolus-insulin-type-2-diabetes-education-novo-nordisk.aspx Click on Important Safety Information on the right.

Please help! Thank you, Brian

Was it helpful?

Solution

Your anchor is in all caps, but the link is in all lowercase. Change the <a id="ISI" name="ISI"></a> to <a id="ISI" name="isi"></a>. Also, if you're not using the ID tag for anything else, I'd just get rid of it. You don't need it for the anchor link to work.

OTHER TIPS

HTML classes and ID names are case-sensitive. Change your code to [a title="Important Safety Information" href="#ISI"].

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top