Skip to content

Instantly share code, notes, and snippets.

@gthomas3
Created November 14, 2013 01:37
Show Gist options
  • Save gthomas3/7459806 to your computer and use it in GitHub Desktop.
Save gthomas3/7459806 to your computer and use it in GitHub Desktop.
hover
$('.category').hover(function() {
var categoryId = $(this).attr('id');
$(this).append("<span class='delete' onclick='deleteItem(" + categoryId + ");'> <a href='#'>delete</a></span>");
}, function() {
$(this).find("span:last").remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment