Forum Moderators: open
<html>
<head>
<title>Auto Submit Thingy</title>
</head>
<body>
<script type="text/javascript">
setTimeout("SubmitThingy()",5000);
function SubmitThingy() {
document.FormThingy.submit();
}
</script>
<form name="FormThingy" method="post" action="CGI SCRIPT GOES HERE">
<input type="text" name="TextThingy" value="Type Here">
<input type="submit" value="Submit">
<p>Click Submit or wait 5 seconds.</p>
</form>
</body>
</html>