Menu
×
×
Correct!
Exercise:Use a jQuery method to show a <p> element.
$("button").click(function(){
$("p").show();
});
Not CorrectClick here to try again. Correct!Next ❯$("button").click(function(){ $("p").(); }); |