How to add current time
How do I add the current time of the user in html,css,js.
Voters
SixBeeps
Use Date.now() in JS.
EDIT: Combine with Date.getTimezoneOffset() to get time in local timezone.
How do I add the current time of the user in html,css,js.
Use Date.now() in JS.
EDIT: Combine with Date.getTimezoneOffset() to get time in local timezone.
I found it.