Hello, can two functions go into a set timeout? If so how does it look and will it switch back and forth between the two functions after so much time? Please let me know, Thank you... setTimeout('one()','two()',3000)????????
umm you can do... setTimeout('one()', 3000); function one() { setTimeout('two()', 3000); //your code etc } function two() { setTimeout('one()', 3000); //your code etc } Code (markup): to get the affect of switching back and forth between them every 3 seconds.