Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript"> //<![CDATA[
var t;
var a=10;
function envia(){
document.forms["elForm"].submit();
}
function miFuncion(){
a--;
if(a == 0){
clearInterval(t);
envia();
}
document.getElementById('x').innerHTML = "El formulario se procesará en " + a + " segs.";
}
//]]>
<form id="elForm" action="envio_auto.html"> Nombre:
<input type='text' name='nombre' value="juan"><p id="x">El formulario se procesará en 10 segs.
</p> <script type="text/javascript"> //<![CDATA[
t = setInterval('miFuncion()',1000);
//]]>
Eso de automaticamente implica algún tipo de timer
SAludos