문제

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

도움이 되었습니까?

해결책

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.

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top