Using CSS to flip images on click works perfectly across all browsers, but runs into issues when there are multiple instances on the same page. The animations occur simultaneously for all instances.
Is there a way to target and animate only one instance at a time?
Check out this link for reference.
$('.card').click(function(){
$('.card').toggleClass('applyflip');
}.bind(this));
Appreciate any help, thank you!