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.

Alemneh Asefa
9,503 PointsCode is exact same....yet the confirmation field does not show up
//Problem: Hints are shown even when form is valid
//Solution: Hide and show them at appropriate times
var $password = $("#password");
var $confirmPassword = $("#confirm_password");
//Hide hints
$("form span").hide();
function passwordEvent(){
//Find out if password is valid
if($password.val().length > 8) {
//Hide hint if valid
$password.next().hide();
} else {
//else show hint
$password.next().show();
}
}
function confirmPasswordEvent() {
//Find out if password and conformation match
if($password.val() === $confirmPassword.val()) {
//Hide hint if match
$confirmPassword.next().hide();
} else {
//else show hint
$confirmPassword.next().show();
}
}
//When event happens on password input
$("#password").focus(passwordEvent).keyup(passwordEvent);
//When event happens on confirmation input
$("#confirm_password").focus(passwordEvent).keyup(passwordEvent);
2 Answers

Erik Krieg
43,038 PointsWhere your code is off is your last line. You are using passwordEvent() as your callback function when you want to be using confirmPasswordEvent().
//When event happens on confirmation input
$("#confirm_password").focus(confirmPasswordEvent).keyup(confirmPasswordEvent);

Alemneh Asefa
9,503 PointsIt worked! Thanks!