I\'m still new to JQuery, on the way to getting my ajax example to work i got stalled with setTimeout. I have broken it down to to where it should add \".\" to the div eve
setInterval(function() { $('#board').append('.'); }, 1000);
You can use clearInterval if you wanted to stop it at one point.