up vote 9 down vote favorite
1
share [g+] share [fb]

I'm looking to automate the changing of images in a slideshow. I'd rather not install any 3rd party plugins if possible.

Thanks.

link|improve this question

74% accept rate
2  
+1 for "I'd rather not install any 3rd party plugins if possible." – nickf Jan 31 '10 at 7:55
@nickf: Because it's humorous as jQuery is already 3rd-party? (But not really, because I'm sure he's using jQuery for other stuff already) – Mark Jan 31 '10 at 8:22
1  
@Mark, hehe no I wasn't being sarcastic, it's just that I see a lot of people jump straight to plugins even though their problem could be solved with a couple of lines of plain javascript. – nickf Jan 31 '10 at 13:11
feedback

3 Answers

up vote 29 down vote accepted
window.setInterval(function(){
  /// call your function here
}, 5000);
link|improve this answer
beat me by half a minute! – John Boker Jan 31 '10 at 7:33
1  
+1 You seriously answered this like a second or so after it was asked!? I call foul! :) – Jonathan Sampson Jan 31 '10 at 7:34
I smell inside job.. – Anthony Forloney Jan 31 '10 at 7:34
1  
It still counts toward your individual tag stats, but no, you never again see the rep on your total rep score. Whats worse, is if you got 10 upvotes, but only one counted, and then someone downvotes, you still lose the 2 points. Oh well, par for the course! – Doug Neiner Jan 31 '10 at 7:43
2  
I'll wait to +1 for your speedy answer to the question when your rep's not capped, in the meantime I will +1 your comment for being so informative to my question :) – Anthony Forloney Jan 31 '10 at 8:08
show 4 more comments
feedback

you could register an interval on the page using setInterval, ie:

setInterval(function(){ 
    //code goes here that will be run every 5 seconds.    
}, 5000);
link|improve this answer
setTimeout runs once only. – Jonathan Sampson Jan 31 '10 at 7:34
yeah i fixed it, trying to type too fast, knew it would be answered quickly :) – John Boker Jan 31 '10 at 7:35
Your opening suggestion still references setTimeout :) – Jonathan Sampson Jan 31 '10 at 7:35
1  
well, thanks :) man it's late. need to stop trying to answer questions when tired. – John Boker Jan 31 '10 at 7:48
1  
You could always call setTimeout again from within the function....that's the way I used to do it >.< I guess it can't be an anonymous function then. Unless there's some sort of call_self() function I'm unaware of. – Mark Jan 31 '10 at 8:24
show 1 more comment
feedback

Both setInterval and setTimeout can work for you (as @Doug Neiner and @John Boker wrote).
See here for some more explanation about both to see which suites you most and how to stop each of them.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.