0
How do I get the device time date using phonegap?
0
How do I get the device time date using phonegap?
2
It seems to me that a possible solution would be the following:
var date = new Date();
var hour = date.getHours();
var min = date.getMinutes();
var seconds = date.getSeconds();
Browser other questions tagged android apache-cordova
You are not signed in. Login or sign up in order to post.
It sure helped! thank you very much.
– Emerson Barcellos