como atualizar o tempo regularmente?
function timeClock()
{
setTimeout("timeClock()", 1000);
now = new Date();
alert(now);
f_date = now.getDate()+" "+strMonth(now.getMonth())+" "+now.getFullYear()+" / "+timeFormat(now.getHours(), now.getMinutes());
return f_date;
}
<span class="foo"><script type="text/javascript">document.write(timeClock());</script></span>
alerta (agora); me dá o valor a cada segundo, mas não é atualizado no html. Como posso atualizar o horário no html sem atualizar a página?