Is it possible, using jQuery, to fire off an event to set a div tag\'s text after n. seconds?
Thanks! George
var doIt = function() { $("div.my").text("My message"); } setTimeout(doIt, 3000);