Search code examples
javajsptimercountpage-refresh

How to create Count up timer using jsp?


I want to create count up timer for my quiz consistent with page refresh I created a quiz with each one Question per page. On clicking next or previous button the form submitted to the same page. So that the timer starts again. Can someone help me to solve that issue.


Solution

  • Store the time, when the timer started, as a cookie. Then, each time the page is loaded, check for existence of this cookie and if it exists, set the starting point of the timer to the value of this cookie.

    You'll also need to reset/remove this cookie when the timer ends.