Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Katriel 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
216,891 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.