Created
April 22, 2015 06:33
-
-
Save srinathweb/230832c74a74b548e98e to your computer and use it in GitHub Desktop.
mouseover
This file contains 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 () | |
{ | |
$(".categoryListEl").mouseenter(function () { | |
$this = $(this); | |
$this.find("span").css("display", "block"); | |
}).mouseleave(function () | |
{ | |
$this = $(this); | |
$this.find("span").hide(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment