Is it possible, using jQuery, to fire off an event to set a div tag\'s text after n. seconds?
Thanks! George
if you're using jQuery 1.4, you can always do: $(function() { $('#divId').delay(3000).text('New Text'); });
$(function() { $('#divId').delay(3000).text('New Text'); });