Skip to content

Instantly share code, notes, and snippets.

@MiLk
Created December 9, 2011 19:05
Show Gist options
  • Select an option

  • Save MiLk/1452839 to your computer and use it in GitHub Desktop.

Select an option

Save MiLk/1452839 to your computer and use it in GitHub Desktop.
$(function() {
$(".vignettes img.normal").mouseover(function() {
$(this).next("img.hover").fadeIn();
});
$(".vignettes img.normal").mouseout(function() {
$(this).next("img.hover").fadeOut();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment