|
|
|
|
|
by lhorie
1549 days ago
|
|
> Test accessibility with keyboard One very simple step a dev can take is to just `tab` over their pages and check that important elements (links, buttons, etc) receive focus. Especially if they toggle something on the page via JS. If something doesn't, replace the div soup w/ a focusable element like `<a href="javascript:;"></a>` For those saying accessibility is hard, doing just this one thing can make a big difference. |
|