Hy
Can anybody help me please ???
I would like to have a 24h Clock but
Here is my Widget.html ... Archiv.to free secure webarchive - kostenloser sicherer Hoster für Deine Files.
I have edit this ...
Code:
function updateClock ( )
{
var currentTime = new Date ( );
var currentHours = currentTime.getHours ( );
var currentMinutes = currentTime.getMinutes ( );
var currentSeconds = currentTime.getSeconds ( );
// Pad the minutes and seconds with leading zeros, if required
currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes;
currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds;
// Choose either "AM" or "PM" as appropriate
//var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";
// Convert the hours component to 12-hour format if needed
// Convert an hours component of "0" to "12"
// Compose the string for display
var currentTimeString = currentHours + ":" + currentMinutes;
// Update the time display
document.getElementById("clock").firstChild.nodeValue = currentTimeString;
}
function init2 ( )
{
timeDisplay = document.createTextNode ( "" );
document.getElementById("ampm").appendChild ( timeDisplay );
}
//function amPm ( )
//{
// var currentTime = new Date ( );
// var currentHours = currentTime.getHours ( );
// Choose either "AM" or "PM" as appropriate
// var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM";
// Compose the string for display
// var currentTimeString = timeOfDay;
// Update the time display
// document.getElementById("ampm").firstChild.nodeValue = currentTimeString;
//}
....
function dotime(){
theTime=setTimeout('dotime()',1000);
d = new Date();
hr= d.getHours()+100;
mn= d.getMinutes()+100;
se= d.getSeconds()+100;
tot=''+hr+mn+se;
But now it shows ...

Where is the 1 to make it 16:27 ??
Please HELP ME 
THANKS ALL !!!
Greetings from Germany