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").keypress(function(){
$(this).hide();
});
Not CorrectClick here to try again. Correct!Next ❯$("input").(function(){ $(this).hide(); }); |