I need to know how to infinitely loop this animation. It is a text scroll animation and I need it to repeat after it\'s finished.
Here is the jQuery:
Following should work.
$(document).ready(function(){ animateTheBox(); }); function animateTheBox() { $(".boxtext").animate({bottom:"600px"}, 50000, animateTheBox); }