Solved
Timestamp when an individual submits a page (clicks the next button)
I am attempting to record the time of when an individual submits a page (clicks the next button).
I know how to do the timing to get how long the participant spent on the page, but I cannot figure out how the get the stamp of the date/time. I think it needs to be done via javascript.
Best answer by TomG
Use an addOnPageSubmit function. You can get the current date time in JavaScript like this:
```
var datetime = new Date();
```
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.