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

Why doesn't this function accept the .on('keydown') method?

I used this code, it works. What's it actually looking for?

$('.hint').hide(); $('input').on('keydown', function(e) { $(this).focus(); $(this).next().show(); });

1 Answer

Cole Wilkes
Cole Wilkes
4,556 Points

With the on( ) function, the first parameter is an event, and the second parameter is an anonymous function that gets executed when the event occurs. In this case the parser is looking for the 'keydown' event to occur.

The keydown event is sent to an element when the user first presses a key on the keyboard. As soon as that happens, your function will execute.

See the jQuery documentation for more information about the 'on( )' method: http://api.jquery.com/on/