# WCAG issue on ember navigation links

**URL:** https://discuss.emberjs.com/t/wcag-issue-on-ember-navigation-links/12784
**Category:** Uncategorized
**Created:** [April 18, 2017, 4:03pm UTC](https://discuss.emberjs.com/t/wcag-issue-on-ember-navigation-links/12784 "2017-04-18T16:03:26Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![webdo\_mane](https://avatars.discourse-cdn.com/v4/letter/w/4af34b/32.png) [@webdo\_mane](https://discuss.emberjs.com/u/webdo_mane)
#### Post date: [April 18, 2017, 4:03pm UTC](https://discuss.emberjs.com/t/wcag-issue-on-ember-navigation-links/12784/1 "2017-04-18T16:03:26Z")

</div>

Hi I was trying to get the ember app wcag compliant using JAWS, an issue which came up was

> This link points to a named anchor “/xyz” within the document, but no anchor exists with that name. `<a id="ember635" href="#/abc" class="ember-view">Link Text</a>`

Since ember navigation links use #/pathname, JAWS is expecting an anchor element for the same meaning something like `<div id="abc"></div>`, what is the ideal or expected way to solve this?

---

<div class="post-metadata">

### Author: ![alexspeller](https://sea1.discourse-cdn.com/flex019/user_avatar/discuss.emberjs.com/alexspeller/32/14812_2.png) [@alexspeller](https://discuss.emberjs.com/u/alexspeller)
#### Post date: [April 18, 2017, 4:37pm UTC](https://discuss.emberjs.com/t/wcag-issue-on-ember-navigation-links/12784/2 "2017-04-18T16:37:59Z")

</div>

Are you required to use the hashlocation api? It’s better to not use it and use history location or auto location

---

<div class="post-metadata">

### Author: ![webdo\_mane](https://avatars.discourse-cdn.com/v4/letter/w/4af34b/32.png) [@webdo\_mane](https://discuss.emberjs.com/u/webdo_mane)
#### Post date: [April 18, 2017, 7:10pm UTC](https://discuss.emberjs.com/t/wcag-issue-on-ember-navigation-links/12784/4 "2017-04-18T19:10:15Z")

</div>

I dont think using history or auto would be an option in my case, is there a solution for using “hash”?

---

<div class="post-metadata">

### Author: ![alexspeller](https://sea1.discourse-cdn.com/flex019/user_avatar/discuss.emberjs.com/alexspeller/32/14812_2.png) [@alexspeller](https://discuss.emberjs.com/u/alexspeller)
#### Post date: [April 18, 2017, 7:30pm UTC](https://discuss.emberjs.com/t/wcag-issue-on-ember-navigation-links/12784/5 "2017-04-18T19:30:38Z")

</div>

I would advise that you ignore it. The error message is not relevant to your ember app because ember apps with hash location don’t work in the way that JAWS expects anchor links to work.

---

<div class="post-metadata">

### Author: ![webdo\_mane](https://avatars.discourse-cdn.com/v4/letter/w/4af34b/32.png) [@webdo\_mane](https://discuss.emberjs.com/u/webdo_mane)
#### Post date: [April 19, 2017, 4:49pm UTC](https://discuss.emberjs.com/t/wcag-issue-on-ember-navigation-links/12784/6 "2017-04-19T16:49:50Z")

</div>

I wish I could, since we need to pass the compliance we have to come up with a way, thanks for the help : )

---

<div class="post-metadata">

### Author: ![alexspeller](https://sea1.discourse-cdn.com/flex019/user_avatar/discuss.emberjs.com/alexspeller/32/14812_2.png) [@alexspeller](https://discuss.emberjs.com/u/alexspeller)
#### Post date: [April 19, 2017, 8:07pm UTC](https://discuss.emberjs.com/t/wcag-issue-on-ember-navigation-links/12784/7 "2017-04-19T20:07:15Z")

</div>

If you can’t change jaws or indicate to it in some way that the error is not relevant, or use hash location instead, it’s probably impossible to do that

---

<div class="post-metadata">

### Author: ![webdo\_mane](https://avatars.discourse-cdn.com/v4/letter/w/4af34b/32.png) [@webdo\_mane](https://discuss.emberjs.com/u/webdo_mane)
#### Post date: [September 13, 2017, 6:39pm UTC](https://discuss.emberjs.com/t/wcag-issue-on-ember-navigation-links/12784/8 "2017-09-13T18:39:47Z")

</div>

true, ignoring the error for now. Its not just jaws even wave tool too
