I would like to put a link inside an aria-live region when an event happens.
However when voiceover reads the aria-live region it does it as text and does not read that there is a clickable link.
so my markup when the event happens is
<div role="region" aria-live="assertive">
hello <a href="/world">world</a>
</div>
Voiceover reads hello world when the event happens and then puts the context back on the element it was on prior to the event being raised.
Is there a way to make voiceover read the content in aria-live as more than just straight text?