Skip to content

Instantly share code, notes, and snippets.

@fayimora
Last active September 28, 2016 09:29
Show Gist options
  • Save fayimora/38c59544b76be69130c470cca5bc7c20 to your computer and use it in GitHub Desktop.
Save fayimora/38c59544b76be69130c470cca5bc7c20 to your computer and use it in GitHub Desktop.
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