I am trying add the a css class (.fadeInScale) to a child div by clicking the parent div.
Here is the HTML structure. In the parenthesis is the location I need to add the .fadeInScale class.
<div class="container js-team-container">
<div class="team__item team__link js-team-card-trigger ">
<div class="team__card js-team-card (.fadeInScale)">
<div class="team__card--top"></div>
<div class="team__card-content">
<p>Sample text</p>
</div>
</div>
<img class="img--circle team__img" src="http://placehold.it/150x150" />
</div>