Last active
September 28, 2016 09:29
-
-
Save fayimora/38c59544b76be69130c470cca5bc7c20 to your computer and use it in GitHub Desktop.
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 characters
var appButton = document.getElementById("app-button"); | |
appButton.addEventListener("mouseover",function() { | |
this.src = "path/to/image"; | |
}); | |
appButton.addEventListener("mouseout",function(){ | |
// return stuff to default | |
this.src = "path/to/image"; | |
}); | |
// THEN CHANGE | |
// <img src="http://i.imgur.com/nJj0l7L.png" style="width:141px;height:43px;"> | |
// TO | |
// <img id="app-button" src="http://i.imgur.com/nJj0l7L.png" style="width:141px;height:43px;"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment