Menu
×
×
Correct!
Exercise:When the mouse pointer enters a <p> element, it should be hidden. Use the correct event to do so.
$("p").@(10)(function(){
$(this).hide();
});
$("p").mouseenter(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?