After a user submits a form via AJAX, a 'Saved successfully' message appears in a
<div>. Sighted users see it, but screen-reader users get no announcement. What is the standard accessible approach?- aRender the message into a container marked with
aria-live="polite"so its updates get announced✓ - bShow the message inside an
alert()dialog so the browser reads it aloud for every user - cAdd
role="button"to the message element so that screen readers treat it as interactive - dMove keyboard focus to the page's
<h1>element each time the message is shown
Explanation:An
aria-live region tells assistive tech to announce content that changes dynamically without the user moving focus; polite waits for a pause so it does not interrupt. role="button" (c) is semantically wrong for a status message, and yanking focus to the h1 (d) is disorienting and does not read the message.