I feel like I have to use way too many .children() in some of my jQuery functions.
.children()
Here\'s my HTML:
have you heard about .find() ?
$('.goal-small-container').hover(function() { $(this).find('.goal-actions').css({visibility: "visible"}); }, function () { $(this).find('.goal-actions').css({visibility: "hidden"}); });