Timer on Web Form

I created an online test and would like to limit the time to complete the test to 30 minutes. I was thinking of an “Autosubmit” after a specific time period, but do not know, how to implememt that.

Any help would be greatly appreciated.

Subject: Timer on Web Form

Perhaps you can use window.setTimeout() in JavaScript. Search the Internet to find details and examples.

Subject: RE: Timer on Web Form

Yes, window.setTimeout will do the trick. Also…if you want to autosubmit, look up the submit method on the HTML form object.