Put following code after your form closing tag
<script language="Javascript">
function doSubmit() {
//asubmit is the name of the SUBMIT button in the form
document.yourForm.asubmit.click();
}
//auto submit after 5 second
setTimeout("doSubmit()",5000);
</script>
<script language="Javascript">
function doSubmit() {
//asubmit is the name of the SUBMIT button in the form
document.yourForm.asubmit.click();
}
//auto submit after 5 second
setTimeout("doSubmit()",5000);
</script>
No comments:
Post a Comment