I have this setup that I would like to play on repeat. I'm not great with jQuery so wondered if someone could show me how?
$('.title1').fadeIn('fast', function() {
$('div').addClass('animated pulse');
});
$('div').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend
animationend', function() {
$('.title1').fadeOut(2000);
});
setInterval()