E-mail List Archives
Re: Forcing screen reader pronunciation of abbreviationimportant to a brand
From: JP Jamous
Date: Apr 13, 2018 9:53AM
- Next message: glen walker: "Re: Anchor inside label?"
- Previous message: glen walker: "Re: Conveying relationship in grid"
- Next message in Thread: Jonathan Avila: "Re: Forcing screen reader pronunciation ofabbreviationimportant to a brand"
- Previous message in Thread: JR Accessibility: "Forcing screen reader pronunciation of abbreviation important to a brand"
- View all messages in this Thread
You can accomplish this by various ways. It depends on the situation you have at hand. The bottom line is you use ARIA to hijack the HTML element. It may not be the best method from a semantic prospective, but it gets the job done.
For example if I have a paragraph:
<p>
You have purchased NE1254 for $300.
</p>
You can hijack NE1254 using ARIA.
<p>
You have purchased
<span aria-label=" N E 1254">
NE1254</span>
for $300.
</p>
I hope that helps.
--------------------
JP Jamous
Senior Digital Accessibility Engineer
E-Mail Me |Join My LinkedIn Network
--------------------
- Next message: glen walker: "Re: Anchor inside label?"
- Previous message: glen walker: "Re: Conveying relationship in grid"
- Next message in Thread: Jonathan Avila: "Re: Forcing screen reader pronunciation ofabbreviationimportant to a brand"
- Previous message in Thread: JR Accessibility: "Forcing screen reader pronunciation of abbreviation important to a brand"
- View all messages in this Thread