Created
July 8, 2011 08:20
-
-
Save gabrielstuff/1071364 to your computer and use it in GitHub Desktop.
Hide and show the legend on mouseover
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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