Admin Admin
عدد المساهمات: 3 تاريخ التسجيل: 29/06/2011
 | موضوع: مصرررررررررررررررررررررررررررررررررررررررررررررررر الأربعاء يونيو 29, 2011 2:20 pm | |
| A:link { color:#003399; text-decoration:none; } A:visited { color:#6699CC; text-decoration:none; } A:hover { text-decoration:underline; }
function tick() { var hours, minutes, seconds, ap; var intHours, intMinutes, intSeconds; var today;
today = new Date();
intHours = today.getHours(); intMinutes = today.getMinutes(); intSeconds = today.getSeconds();
if (intHours == 0) { hours = "12:"; ap = "Midnight"; } else if (intHours < 12) { hours = intHours ":"; ap = "ص"; } else if (intHours == 12) { hours = "12:"; ap = "Noon"; } else { intHours = intHours - 12 hours = intHours ":"; ap = "م"; }
if (intMinutes < 10) { minutes = "0" intMinutes ":"; } else { minutes = intMinutes ":"; }
if (intSeconds < 10) { seconds = "0" intSeconds " "; } else { seconds = intSeconds " "; }
timeString = hours minutes seconds ap;
Clock.innerHTML = timeString;
window.setTimeout("tick();", 100); }
window.onload = tick; |
|