I feel like I have to use way too many .children() in some of my jQuery functions.
.children()
Here\'s my HTML:
You can just use:
$('.goal-small-container').hover(function() { $(this).find('goal-actions').show(); }, function() { $(this).find('goal-actions').hide(); });