Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 20th, 2012  |  syntax: None  |  size: 0.39 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. jQuery Looping Animation with Counter
  2. function AttachGo() {
  3.     $('a#GoButton').click(function() {
  4.         for (i = 0; i < 5; i++) {
  5.             $('div#Timer').animate({
  6.                 backgroundColor: "#FF0000"
  7.             }, 1000, 'linear',
  8.                 $('div#Timer').css("backgroundColor", "#22FF22"),
  9.                 $('p#Count').text("Completed: " + i)
  10.             );
  11.         }
  12.     });
  13. }