jQuery Question Don't Hate Me.
jQuery Question Don't Hate Me.
- Started
- Last post
- 3 Responses
- decisionman
Just looking to loop this function:
$(document).ready(function(){
$("body")
//.animate({ queue: false, duration: 7000 })
.animate({ backgroundColor: "orange" }, 1000)
.animate({ backgroundColor: "yellow" }, 1000)
.animate({ backgroundColor: "green" }, 1000)
.animate({ backgroundColor: "blue" }, 1000)
.animate({ backgroundColor: "indigo" }, 1000)
.animate({ backgroundColor: "violet" }, 1000)
.animate({ backgroundColor: "red" }, 1000);
});I'm way out of my league here. Feel free to hate!
xo,
Mark.
- sublocked0
google: setTimeout & setInterval
- decisionman0
Thank you!