Is that possible to make with default main.js. I dont want to use any random librarys with this. I just want to specified time / date.. If someone can shows to easiest way to make this.. Thanks! 🙂
var startTime;
var checkTime;
//Initialize function
var init = function () {
// TODO:: Do your initialization job
console.log("init() called");
// add eventListener for tizenhwkey
document.addEventListener('tizenhwkey', function(e) {
if(e.keyName == "back")
tizen.application.getCurrentApplication().exit();
});
};
// window.onload can work without <body onload="">
window.onload = init;
function startTime() {
var today = new Date();
var h = today.getHours();
var m = today.getMinutes();
var s = today.getSeconds();
m = checkTime(m);
s = checkTime(s);
document.getElementById('divbutton1').innerHTML="Current time: " + h + ":" + m + ":" + s;
t = setTimeout(startTime, 250);
}
function checkTime(i) {
if (i < 10) {
i="0" + i;
}
return i;
}
Get specified time and date
Is that possible to make with default main.js. I dont want to use any random librarys with this. I just want to specified time / date.. If someone can shows to easiest way to make this.. Thanks! 🙂
BY
16 Apr 2025
Tizen Studio
BY
04 Nov 2024
Tizen Studio
BY
02 Apr 2024
Tizen Studio