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