Danny Full Member
Posts: 180 Status: Offline Gender: Male Location: Durham Age: 33 Joined:
pmmsnxfire | Time in Menu Bar (30th Dec 07 at 3:01am UTC) | | Global Header
Preview
No need to edit
Code: - <script type="text/javascript">
- <!--
- /*Time to the left of menu butons by Danny*/
-
- 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('time').innerHTML=h+":"+m+":"+s
- t=setTimeout('startTime()',500)}
- function checkTime(i){
- if (i<10) {
- i="0" + i}
- return i}
-
- var menu = document.getElementById('welcome_table').getElementsByTagName('td')[2];
-
- menu.innerHTML = '<span style="float:right;" id="time"></span>' + menu.innerHTML;
-
- window.onload = startTime();
-
- //-->
- </script>
| |
|
|
Michael Moderator
Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
pmvForum | Re: Time in Menu Bar (30th Dec 07 at 3:02am UTC) | | have you tested this? | |
|
Danny Full Member
Posts: 180 Status: Offline Gender: Male Location: Durham Age: 33 Joined:
pmmsnxfire | Re: Time in Menu Bar (30th Dec 07 at 3:06am UTC) | | yeah il add a preview | |
|
|
Michael Moderator
Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
pmvForum | Re: Time in Menu Bar (30th Dec 07 at 3:09am UTC) | | looks good! | |
|
Danny Full Member
Posts: 180 Status: Offline Gender: Male Location: Durham Age: 33 Joined:
pmmsnxfire | Re: Time in Menu Bar (30th Dec 07 at 3:09am UTC) | | thanks man | |
|
|
Marc vChat Developer
I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 32 Joined:
Additional Groups: Coding Team
pmwww | Re: Time in Menu Bar (30th Dec 07 at 3:42am UTC) | | Just so you know, the time shows up to the right of the menu buttons, not the left. | |
rroll.to— Shorten a link, rickroll your friends. |
|
Michael Moderator
Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
pmvForum | Re: Time in Menu Bar (30th Dec 07 at 3:45am UTC) | | lol it's coded to go right, but the Copyright says left! | |
|
Marc vChat Developer
I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 32 Joined:
Additional Groups: Coding Team
pmwww | Re: Time in Menu Bar (30th Dec 07 at 3:46am UTC) | | lol it's coded to go right, but the Copyright says left!
That's pretty much what I just said. | |
rroll.to— Shorten a link, rickroll your friends. |
|
Michael Moderator
Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
pmvForum | Re: Time in Menu Bar (30th Dec 07 at 3:47am UTC) | | and I was just reiterating it cause it was funny! >.> | |
|
Marc vChat Developer
I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 32 Joined:
Additional Groups: Coding Team
pmwww | Re: Time in Menu Bar (30th Dec 07 at 3:48am UTC) | | and I was just reiterating it cause it was funny! >.>
Ahh, that works. | |
rroll.to— Shorten a link, rickroll your friends. |
|
Danny Full Member
Posts: 180 Status: Offline Gender: Male Location: Durham Age: 33 Joined:
pmmsnxfire | Re: Time in Menu Bar (30th Dec 07 at 3:52am UTC) | | oops I meant to say right I even put float:right; in the code | |
|
|
Marc vChat Developer
I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 32 Joined:
Additional Groups: Coding Team
pmwww | Re: Time in Menu Bar (30th Dec 07 at 4:16am UTC) | | oops I meant to say right I even put float:right; in the code
Haha, no problem. | |
rroll.to— Shorten a link, rickroll your friends. |
|
Samus Junior Member
Posts: 56 Status: Offline Gender: Male Location: Australia Joined:
pmmsnicq | Re: Time in Menu Bar (30th Dec 07 at 4:52am UTC) | | menu.innerHTML = '<span style="float:right;" id="time"></span>'+menu.innerHTML+'';
It needs only be;
menu.innerHTML = '<span style="float:right;" id="time"></span>'+menu.innerHTML;
Because, you can't actually add nothing to the end of something. | |
|
|
Danny Full Member
Posts: 180 Status: Offline Gender: Male Location: Durham Age: 33 Joined:
pmmsnxfire | Re: Time in Menu Bar (30th Dec 07 at 7:11pm UTC) | | just changed it | |
|
|
ManGoneMad New Member
Posts: 20 Status: Offline Gender: Male Location: West Coast of Michigan Age: 66 Joined:
pmwwwvForum | Re: Time in Menu Bar (30th Dec 07 at 11:59pm UTC) | | Nice script! Is there any way to have show normal 12 hour time, as opposed to military time? | |
|
|