Jump to content

<body onload="startTime()">


Recommended Posts

Posted
 

 

 

 

 

 

 

 

 

 


Hello, how do I open this code in UniHTMLFrame when opening the form.

 

Thank you very much.

Gustavo Marçaro


 

 

 

HTML Code.

 

 

<!DOCTYPE html>

<html>

<head>

<script>

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('txt').innerHTML =

    h + ":" + m + ":" + s;

    var t = setTimeout(startTime, 500);

}

function checkTime(i) {

    if (i < 10) {i = "0" + i};  // add zero in front of numbers < 10

    return i;

}

</script>

 

</head>

<body onload="startTime()">

<div id="txt"></div>

 

</body>

</html>

 

 

 

Posted

Hello,

 

1. UniHTMLFrame -> HTML:

<div id="txt"></div>

2. UniHTMLFrame -> AfterScript:

function checkTime(i) {
    if (i < 10) {i = "0" + i};  // add zero in front of numbers < 10
    return i;
}


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('txt').innerHTML =
    h + ":" + m + ":" + s;
    var t = setTimeout(startTime, 500);
}

startTime();

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...