Skip to content

Instantly share code, notes, and snippets.

@ryarwood
Created December 17, 2012 22:20
Show Gist options
  • Save ryarwood/4322873 to your computer and use it in GitHub Desktop.
Save ryarwood/4322873 to your computer and use it in GitHub Desktop.
jQuery Fade In Title on Menu Images
$(document).ready(function() {
$(".pgaPhoto").hover(function() {
$(this).find(".pgaTitle").stop().fadeTo(300, 1 , function() {
});
} , function() { //on hover out...
$(this).find(".pgaTitle").fadeTo(300, 0);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment