Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKatriel Paige
9,260 PointsThese exercises use onClick. But what if you wanted to make sure the counters are accessible using a keyboard?
I hesitate to always use onClick for functionality because many times, I don't use a mouse. So, is there some other way to code this that allows for keyboard access to the score counters etc?
3 Answers
Steven Parker
231,236 PointsThe "onchange" event Lukas mentioned will work for typing into input elements. But if you want to detect keyboard events on other elements or the document itself, you can use the "onkeydown" event.
See the MDN page on keydown for more details.
Lukas Dahlberg
53,736 PointsonChange, onFocus (or onFocusIn), and onBlur based on what you're trying to accomplish and when
Katriel Paige
9,260 PointsThanks! I also realized that I see a lot of onmouseclick - which thankfully is not used as often anymore, but a lot of older code I've seen still assumes use of a mouse.
Mark Wood
Full Stack JavaScript Techdegree Student 11,100 PointsI know this is an old question but in case people read this in the future, the "enter" or spacebar keys register as a click on the focus
ed item, so onClick
still works. Maybe this wasn't the case in 2019? I'm not sure about that.