Menu
  • HOME
  • TAGS

How to set priority for screen readers of some HTML page parts?

html,accessibility,wai-aria,screen-readers,wcag2.0

Do not try to hide the content from screen reader users, they will want to get access to that content. Instead, you can add landmarks to your content areas. Screen readers will then be able to jump directly to the relevant portion of the page, including the results, but will...

is it wcag 2.0 AA accessible to leave both title and alt empty and add the text in a hidden paragraph text?

html,wcag2.0

The best option in my case I have found is to use something like below <a href="http://somelink.com" title=""> <img src="someimage.png" alt=" "/> <p class="hide_text">The complete alt text here as in too long to have any meaning to put in the title/alt above. Then is it accessible enough to put in...