Open arvvvs opened 7 years ago
Try this for javascript ` // JavaScript File $(document).ready(function() {
// All code goes here
var password = "secretpassword";
$("button").click(function() {
if (password === $("#password-input").val()) {
alert("Congratulation!");
}
});
}); `
Grading
Missing JavaScript! 4/10