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 trialJacob Hopkins
7,310 PointsWhen I type a password in the password field greater than 8 characters the input disappears not the hint. Fix it.
What am I missing??
//Problem: Hints are shown even when form is valid
//Solution: Hide and show them at appropriate times
//Hide hints
$("form span").hide();
function passwordEvent(){
//Find out if password is valid
if($("form span").val().length > 8) {
//Hide hint if valid
$("form span").next().hide();
} else {
//else show hint
$("form span").next().show();
}
}
//When event happens on password input
$("#password").focus(passwordEvent).keyup(passwordEvent);
//When event happens on confirmation input
//Find out if password and confirmation match
//Hide hint if match
//else show hint
<!DOCTYPE html>
<html>
<head>
<title>Sign Up Form</title>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<form action="#" method="post">
<p>
<label for="username">Username</label>
<input id="username" name="username" type="text">
</p>
<p>
<label for="password">Password</label>
<input id="password" name="password" type="password">
<span>Enter a password longer than 8 characters</span>
</p>
<p>
<label for="confirm_password">Confirm Password</label>
<input id="confirm_password" name="confirm_password" type="password">
<span>Please confirm your password</span>
</p>
<p>
<input type="submit" value="SUBMIT">
</p>
</form>
<script src="//code.jquery.com/jquery-1.11.0.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/app.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>
1 Answer
Saad Khan
7,485 Points$("form span")
is referring to all the <span>
elements that are inside the form element. So when you add the .next()
method to it, it looks for the element that comes next to the span.
You need to direct it to the $("#password")
element, so that the next element is the <span>Enter a password longer than 8 characters</span>
which you want to be hidden.
Update your code as following and it will do just fine. Hope this helps!
//Problem: Hints are shown even when form is valid
//Solution: Hide and show them at appropriate times
//Hide hints
$("form span").hide();
function passwordEvent(){
//Find out if password is valid
if($("form span").val().length > 8) {
//Hide hint if valid
$("#password").next().hide();
} else {
//else show hint
$("#password").next().show();
}
}
//When event happens on password input
$("#password").focus(passwordEvent).keyup(passwordEvent);
//When event happens on confirmation input
//Find out if password and confirmation match
//Hide hint if match
//else show hint