Skip to content

Instantly share code, notes, and snippets.

@pedrozath
Created November 5, 2012 18:41
Show Gist options
  • Save pedrozath/4019498 to your computer and use it in GitHub Desktop.
Save pedrozath/4019498 to your computer and use it in GitHub Desktop.
colors=["red", "blue", "yellow"];
var x = 0;
(change_color = function(){
x++;
$("body").css("background-color", colors[(x % colors.length)]);
console.log(x, (x % colors.length), colors[(x % colors.length)]);
setTimeout("change_color()", 10);
}).call(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment