Menu
×
×
Correct!
Exercise:Use a jQuery method to hide a <p> element when it is clicked on.
$("p").click(function(){
$(this).hide();
});
Not CorrectClick here to try again. Correct!Next ❯$("p").click(function(){ $(this).(); }); |