Skip to content

Instantly share code, notes, and snippets.

@zhouyuan24
Created March 1, 2014 13:41
Show Gist options
  • Save zhouyuan24/9289901 to your computer and use it in GitHub Desktop.
Save zhouyuan24/9289901 to your computer and use it in GitHub Desktop.
js hover
$(".fd-hover-show").hide();
$('.module-roles-tr').mousemove(function(e) {
$(this).find(".fd-hover-show").show();
}).mouseout(function() {
$(this).find(".fd-hover-show").hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment