Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Created September 24, 2015 14:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taniarascia/93261159556b7ce434fd to your computer and use it in GitHub Desktop.
Save taniarascia/93261159556b7ce434fd to your computer and use it in GitHub Desktop.
Hover Example
var image = document.getElementById("hover-example");
image.onmouseover = function() { image.src = "http://placehold.it/350x150/262626/ffffff"; }
image.onmouseout = function() { image.src = "http://placehold.it/350x150"; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment