Time
Posted: Tue Apr 29, 2014 12:57 pm
Hi
I have an input box that is type "Time".
How can I set the default value or local time on app start up?
Must I use:
var d = new Date();
var t = d.getTime();
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Hi
I have an input box that is type "Time".
How can I set the default value or local time on app start up?
Must I use:
var d = new Date();
var t = d.getTime();
Hello!
Use dateObj.toTimeString(): method. Here is more information https://developer.mozilla.org/en-US/d...
Thank you