I'm trying to understand how this may be possible to achieve in order to make it more clear to the end user with disabilities.
What I'm trying to do is to hide some partial text that is provided by default and replace it with another piece of text for users with disabilities.
For example:
<span id="one">ACCESSIBILITY CHECK</span>
<span id="two">Accessibility check</span>
As you see, the first part(#one
) isn't accessible. I want to hide second(#two
) from default users and the first one(#one
) from users with disabilities.
The first part - hiding from default users - I know how to achieve, but the second part not. I read about aria-hidden="true"
, but really not sure about it in terms of cross-platforming and the meaning it self.