Actionable Elements - AJAX Accessibility

BAD: non-actionable element

This example hooks up the onclick() and onkeypress() events to a <span> element

Show Detail

Now is the time for all good men to come to the aid of their country.

BAD: non-onclick() on an actionable element

This example hooks up the onfocus() and onblur() events to an <a href> element

Show Detail

Now is the time for all good men to come to the aid of their country.

GOOD: onclick() on an actionable element

This example hooks up the onclick() event to an <a href> element.

Show Detail

Now is the time for all good men to come to the aid of their country.

GOOD: onclick() on an actionable element

This example hooks up the onclick() event to a <button> element.

Now is the time for all good men to come to the aid of their country.