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.

Joshuel Patterson
Courses Plus Student 3,201 PointsWhy 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
4,556 PointsWith 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/