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 trial

JavaScript React Basics (2018) Understanding State Bind Event Handlers to Components

These 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
Steven Parker
229,644 Points

The "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.

onChange, onFocus (or onFocusIn), and onBlur based on what you're trying to accomplish and when

Thanks! 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
seal-mask
.a{fill-rule:evenodd;}techdegree
Mark Wood
Full Stack JavaScript Techdegree Student 11,100 Points

I 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 focused item, so onClick still works. Maybe this wasn't the case in 2019? I'm not sure about that.