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.
85.7% 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 class="et_pb_button et_pb_button_0 et_hover_enabled et_pb_bg_layout_light" href="#contactform" data-et-has-event-already="true">Arrange a visit</a>
|
1 |
1
distinct issue was
found in the sample of 7 web pages.