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
This accomplishes the same thing but is much simpler:
$(document).ready(function() { $("#board").delay(1000).append("."); });
You can chain a delay before almost any jQuery method.