I have a function that makes 6 elements on my page, fall and bounce using jQuery UI easings.
function drop_points(){
        $('.pointer').animate({
            top : '+=400'   
        }, 700, 'easeOutBounce');
    };
At the minute, each element drops at the same time, Is there a way I could apply this function to randomly have them drop 1 after the other?
The markup for each pointer is as so...
<a href="#" class="pointer c1"></a>
<a href="#" class="pointer c2"></a>
<a href="#" class="pointer c3"></a>
etc...
I know I could use callbacks and target them individually only this seems bloated and I'm just curious if there's a better alternative.
Thanks