Menu
×
×
Correct!
Exercise:If you press a keyboard key inside an <input> element, it should be hidden. Use the correct event to do so.
$("input").@(8)(function(){
$(this).hide();
});
$("input").keypress(function(){
$(this).hide();
});
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 60 exercises.
Are you sure you want to continue?