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!
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

Michael Herleman
5,192 PointsJQuery Form Validation
FROM: Build an Interactive Website > Form Validation and Manipulation > Text Input Events
QUESTION:
Select all inputs and on the 'keydown' event select 'this' and then show the next element.
I got the first one right... But, what about the second?
$("input,textarea").focus(function(){$(this).next()});
2 Answers

Ian Lunn
4,558 PointsYou only need to select <input>
elements:
$('input')
Use the '.keydown' event rather than '.focus' and then show the next element using the .show()
function. Put all of that together and you have your answer!

Michael Herleman
5,192 PointsIan, Thank you for the help and the explanation. I completed the challenge and I am learning again.
Thanks,
Mike