Skip to content

Instantly share code, notes, and snippets.

@gabrielstuff
Created July 8, 2011 08:20
Show Gist options
  • Save gabrielstuff/1071364 to your computer and use it in GitHub Desktop.
Save gabrielstuff/1071364 to your computer and use it in GitHub Desktop.
Hide and show the legend on mouseover
$(function(){
$(".img-profil").mouseover(function(e){
$(this).children('.interact').show();
});
$(".img-profil").mouseout(function(){
$(this).children('.interact').hide();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment