RuleSets of AccessMonitor - the validator of web accessibility practices
The “Redundant Event Handlers Check” evaluates whether all interactive elements on the page with mouse event handlers also include corresponding keyboard event handlers or are implemented using semantic HTML elements that already provide built-in keyboard support (like <button>
or <a href>
).
I identified all instances where redundant event handlers are used.
To address missing redundant event handlers:
onkeydown
) to allow the triggering with a keyboard event.<button>
).