First rule of ARIA

Div with class that'll trigger alert:

div class="js-alert"
Show alert

Add CSS:

div class="js-alert button"
Show alert

Add role="button":

div class="js-alert button"
role="button"
Show alert

Add tabindex=0:

div class="js-alert button"
role="button"
tabindex="0"
Show alert

Native HTML button and onclick:

button class="js-alert"