Last active
January 14, 2018 15:13
-
-
Save sdoro/d9eccda504eb938c201809b305cb6089 to your computer and use it in GitHub Desktop.
Revisions
-
sdoro revised this gist
Jan 14, 2018 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,2 +1,7 @@ var heading = document.getElementById("heading"); heading.onmouseover = changeHeading; function changeHeading(){ heading.innerHTML = "You moved the mouse over me"; } -
sdoro revised this gist
Jan 14, 2018 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,4 +4,7 @@ onmouseover A [Pen](https://codepen.io/bdeen/pen/067b2fb41828d069129a378d0ce799c1) by [Bre'Ana Deen](https://codepen.io/bdeen) on [CodePen](https://codepen.io). [License](https://codepen.io/bdeen/pen/067b2fb41828d069129a378d0ce799c1/license). Create an event handler that changes the text in the heading to "You moved the mouse over me" on a mouseover event. -
sdoro created this gist
Jan 14, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ <h1 id="heading">Just a normal heading</h1> <p>Followed by some normal paragraph text</p> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ onmouseover ----------- A [Pen](https://codepen.io/bdeen/pen/067b2fb41828d069129a378d0ce799c1) by [Bre'Ana Deen](https://codepen.io/bdeen) on [CodePen](https://codepen.io). [License](https://codepen.io/bdeen/pen/067b2fb41828d069129a378d0ce799c1/license). This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ var heading = document.getElementById("heading");