Skip to content

Instantly share code, notes, and snippets.

@srinathweb
Created April 22, 2015 06:33
Show Gist options
  • Save srinathweb/230832c74a74b548e98e to your computer and use it in GitHub Desktop.
Save srinathweb/230832c74a74b548e98e to your computer and use it in GitHub Desktop.
mouseover
$(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