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 jQuery Basics (2014) Creating a Password Confirmation Form Using focus() and keyup()

michael miday
michael miday
6,649 Points

No clue what you are asking. Explain what should happen...

No clue what you are asking. The code itself is clear up until the focus parts and the comments explain absolutely nothing. Please elaborate on what should happen...

1 Answer

The code binds the confirmPasswordEvent function to the focus and keyup events so that when the person clicks on the Confirm Password field the 'Please confirm your password' span is shown and will stay until the password is correct.

The answer is

$confirmPassword.keyup(enableSubmitEvent).focus(confirmPasswordEvent).keyup(confirmPasswordEvent);
michael miday
michael miday
6,649 Points

thks,

I guess its just confusing cause this is not the way of handling this and a bad example of focus and keyup.