- jQuery Looping Animation with Counter
- function AttachGo() {
- $('a#GoButton').click(function() {
- for (i = 0; i < 5; i++) {
- $('div#Timer').animate({
- backgroundColor: "#FF0000"
- }, 1000, 'linear',
- $('div#Timer').css("backgroundColor", "#22FF22"),
- $('p#Count').text("Completed: " + i)
- );
- }
- });
- }