I have a button named Check In. My aim is on click to change the text and start counting the time. The timer has to stop at the next click. It should give the time taken between the two button clicks.
I have a button named Check In . My aim is on click to
Share
On the first click create a variable:
Then on the second click you can calculate the difference:
difference / 1000will give you the difference in seconds. Hope this helps.