What does this mean?
Do not link to an anchor on the page that does not exist. For example:
linking to #content
without a valid destination such as <body id="content"></body>
.
A common web design pattern is to use a named anchor to show an element via JavaScript, e.g.
<a href="#foo" onclick="$('.bar').toggle();">Click me</a>
<div class="bar">
This is some content.
</div>
In these cases, the anchor (#foo
) should point to the id
of the hidden element:
<a href="#foo" onclick="$('#foo').toggle();">Click me</a>
<div id="foo">
This is some content.
</div>
This way the semantic intent of the link is preserved, even without JavaScript. Note that doing so may require modification to your script, to prevent automatic scrolling to the named anchor.
98.4% done
How close this website is to fixing this issue.
This issue is quite technical.
To understand what is going on, you may need some familiarity with
HTML,
the language used to create web pages. Ask a web developer if you need help.
HTML | Found on page | Issues |
---|---|---|
<a href="#mce_temp_url#">public.disclosure@kent.police.uk</a>
|
1 | |
<a href="#_GDPR_Right_of"><strong>GDPR Right of Access</strong></a>
|
1 | |
<a href="#_DPA_Right_of"><strong>DPA Right of Access</strong></a>
|
1 | |
<a href="#_DPA_Right_to">right to erasure or restriction.</a>
|
1 |
4
distinct issues were
found in the sample of 125 web pages.