setTimeOut(document.getElementById('my_form').subm it(), 60000);
va bene? oppure devo mettere un ; dopo il submit()...vorrei che facesse il submit di quella form dopo 1minuto...
Grazie.
setTimeOut(document.getElementById('my_form').subm it(), 60000);
va bene? oppure devo mettere un ; dopo il submit()...vorrei che facesse il submit di quella form dopo 1minuto...
Grazie.
GdR Online - http://lenar.it/
Yesterday is history. Tomorrow is mystery.
Today is a gift. That's why it's called the present
se non ricordo male ci vanno gli apici...
http://www.google.it/search?hl=it&sa...submit&spell=1
e quindi così:
setTimeOut('document.getElementById(\'my_form\').s ubmit()', 60000);
ok? però quegli slash...mmh...
GdR Online - http://lenar.it/
Yesterday is history. Tomorrow is mystery.
Today is a gift. That's why it's called the present
codice:<html><head><title></title> <script type="text/javascript"> var t=setTimeout("document.getElementById('myform').submit()",1000); </script> </head> <body> <form name="myform" id="myform" action="try8.html" method="get"> <input type="text" name="user"> <input type="submit" value="Submit"> </form> </body> </html>