Revision: 18662
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at October 6, 2009 08:11 by justinscheetz
Initial Code
// START ROTATE CODE
var timer;
var donext = function (x){
// "Next Slide" code goes here
}
var dotimer = function (){
if(timer != null) {
clearInterval(timer);
}
timer = setInterval(function() {
donext();
}, 6000); // Change the time in between rotations here (in milliseconds)
}
dotimer();
Initial URL
Initial Description
Initial Title
Auto-Rotate Code
Initial Tags
Initial Language
JavaScript