Skip to content

Instantly share code, notes, and snippets.

@logeshpaul
Created March 30, 2012 09:19
Show Gist options
  • Save logeshpaul/2250240 to your computer and use it in GitHub Desktop.
Save logeshpaul/2250240 to your computer and use it in GitHub Desktop.
JS: Mouse hover function (Twitter Following)
$('.flag-following').mouseover(function(){
$('.flag-following img').attr("src", "images/flag-following-on.png");
});
$('.flag-following').mouseout(function(){
$('.flag-following img').attr("src", "images/flag-following-off.png");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment