How can I reduce the amount of children I use in my jQuery functions?

后端 未结 5 2022
一生所求
一生所求 2021-01-31 20:10

I feel like I have to use way too many .children() in some of my jQuery functions.

Here\'s my HTML:

5条回答
  •  再見小時候
    2021-01-31 20:40

    You can just use:

    $('.goal-small-container').hover(function() {
       $(this).find('goal-actions').show();
    }, function() {
       $(this).find('goal-actions').hide();
    });
    

提交回复
热议问题