We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c057e96 commit 3582e87Copy full SHA for 3582e87
dom-and-events/exercises/script.js
@@ -4,7 +4,12 @@ function init () {
4
const paragraph = document.getElementById("statusReport");
5
6
// Put your code for the exercises here.
7
-
+ button.addEventListener('click', event => {
8
+ paragraph.innerHTML = 'Houston! We have liftoff!';
9
+ });
10
+ missionAbort.addEventListener("mouseout", function( event ) {
11
+ event.target.style.backgroundColor = "";
12
13
}
14
15
window.addEventListener("load", init);
0 commit comments