Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

JavaScript Forum


You are currently viewing our JavaScript Forum as a guest. Please register to participate.
Login



Reply
Old 01-30-2006, 05:51 AM non-form clock??
Seanneo's Avatar
Experienced Talker

Posts: 42
Trades: 0
hey i need a javascript clock for my website without using the <form> tags, if someone cud send me a link or tell how to convert a form into a non-form it wud be much appreciated.
thx in advance
Seanneo is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 01-30-2006, 09:34 AM
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
use any HTML element you want
you can use document.GetElementById("elementID").innerHTML = "something"; to write the output
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 01-30-2006, 10:21 AM
Seanneo's Avatar
Experienced Talker

Posts: 42
Trades: 0
ah ok thx m8, ill try it l8r
Seanneo is offline
Reply With Quote
View Public Profile
 
Old 02-12-2006, 08:55 AM Re: non-form clock??
Seanneo's Avatar
Experienced Talker

Posts: 42
Trades: 0
hey i tried but cudn't get it to work. cud u show wat to do with this code.
Code:
<form name="Tick">
  <div align="center">
    <input type="text" size="12" name="Clock">
  </div>
</form>

<script type="text/javascript">
function show()
{
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="AM" 
if (hours>12)
{
dn="PM"
hours=hours-12
//this is so the hours written out is 
//in 12-hour format, instead of the default //24-hour format.
}
if (hours==0)
hours=12
//this is so the hours written out 
//when hours=0 (meaning 12a.m) is 12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
document.Tick.Clock.value=
hours+":"+minutes+":"+seconds+" "+dn
setTimeout("show()",1000)
}
show()
</script>
thx, any help much appreciated
Seanneo is offline
Reply With Quote
View Public Profile
 
Old 02-12-2006, 09:54 AM Re: non-form clock??
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
HTML Code:
<span id="clock"></span>
Code:
document.getElementById("clock").innerHTML = 
hours+":"+minutes+":"+seconds+" "+dn
Not tested
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 02-12-2006, 02:09 PM Re: non-form clock??
Seanneo's Avatar
Experienced Talker

Posts: 42
Trades: 0
thx thats perfect cheers m8
Seanneo is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to non-form clock??
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.22605 seconds with 12 queries