Welcome to Dream.In.Code
Getting Help is Easy!

Join 109,297 Programmers for FREE! Ask your question and get quick answers from experts. There are 1,212 online right now! We've got more than 500 tutorials and 2,000 snippets. Join and find out why Dream.In.Code is the #1 programming help community on the internet! Registration is fast and FREE... Join Now!



Current Date and Time

 
Reply to this topicStart new topic

Current Date and Time

velaphi
post 23 Jul, 2008 - 11:38 AM
Post #1


New D.I.C Head

*
Joined: 20 Jul, 2008
Posts: 6

Hi, there is an error in this program. i can't get it right.

CODE
<html>
<head>

<script LANGUAGE="JAVASCRIPT">
<!--Hide from old browser

function curTime(){
var now= new Date()
var day = now.getDay()
var date = now.getDate()
var year = now.getFullYear()
var month = now.getMonth()
var hours = now.getHours()
var minutes = now.getMinutes()
var seconds = now.getSeconds()

var days = new Array()
days[0] = "Sunday"; days[1] = "Monday"; days[2] = "Tuesday"; days[3] = "Wednesday"; days[4] = "Thursday";
days[5] = "Friday"; days[6] = "Saturday"

display = days[day] + " "+ month + "/" + date + "/"
+ year +" "+ hours + ":" + minutes + ":" + seconds

<document.days[0].readout.value = display;><!--This line is causing an error-->
}
var  tick = setInterval("curTime()", 1000)

//-->
</script>
<title>Time</title>
</head>
<body>
<form.action="">

<p><input type="text" size="30" name="readout" /></p>
</form>
</body>
</html>

User is offlineProfile CardPM

Go to the top of the page


ahmad_511
post 23 Jul, 2008 - 04:58 PM
Post #2


D.I.C Regular

Group Icon
Joined: 28 Apr, 2007
Posts: 351



Thanked 8 times

Dream Kudos: 400
My Contributions


Hello,
try it this way:
jscript

document.getElementById("readout").value = display;


HTML
<input type="text" size="30" id="readout" />


This post has been edited by ahmad_511: 23 Jul, 2008 - 05:00 PM
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 9/6/08 09:41AM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month