I'm trying to make it so whenever I click on a certain element, other elements will appear using wow.js animations with a delay. The animation itself works on click, however, the delay isn't there.
$(function() {
$('#projects-btn').click(function() {
$('.circle').addClass('wow fadeInUp animated');
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.js"></script>
<h1 id="projects-btn"></h1>
<div id="selectors">
<div class="circle" data-wow-delay="2s"></div>
<div class="circle" data-wow-delay="3s"></div>
<div class="circle" data-wow-delay="4s"></div>
<div class="circle" data-wow-delay="5s"></div>
<div class="circle" data-wow-delay="6s"></div>
</div>