Good all the time of day, gentlemen.
<script> function subm() { document.forms['form1'].submit(); } setTimeout(subm, 1); </script> <form id="form1" name="form1" method="post" action=""> <label> <input type="hidden" name="textfield" id="textfield" /> </label> <label> <input type="button" name="go" id="go" value="" onclick="subm()" /> </label> </form>
This code, when added to the page, makes it updated (F5) at a specified time interval. setTimeout (subm, 1); - means 1/1000 seconds. Actually the code suits. Is it possible in some way for the update function to hang on a form? (Ideally, just to have a script with the time in it).