up vote 0 down vote favorite
1
share [g+] share [fb]

Using javascript, how can we auto insert the current DATE and TIME into a form input field.

I'm building a "Problems" form to keep track of user submitted complaints about a certain service. I'm collecting as much info as possible. I want to save the staff here from having to manually enter the date and time each time they open the form.

I have this snippet of code:

<input id="date" name="date" value="javascript:document.write(Date()+'.')"/>

but it's not working.

many thanks for any help.

link|improve this question

70% accept rate
1  
No attribute of any HTML element will ever execute a JS statement: HTML is not a scripting language. onclick et al just provide values to a DOM representation. – annakata Jun 16 '09 at 14:49
feedback

8 Answers

up vote 8 down vote accepted

Javascript won't execute within a value attribute. You could do something like this, though:

<input id="date" name="date">

<script type="text/javascript">
  document.getElementById('date').value = Date();
</script>

You'd probably want to format the date as you prefer, because the default output of Date() looks something like: Tue Jun 16 2009 10:47:10 GMT-0400 (Eastern Daylight Time). See this SO question for info about formatting a date.

link|improve this answer
feedback

See the example, http://jsbin.com/ahehe

Use the JavaScript date formatting utility described here.

<input id="date" name="date" />

<script>
   document.getElementById('date').value = (new Date()).format("m/dd/yy");
</script>
link|improve this answer
feedback

The fastest way to get date formatting thats any good is to use datejs.

The lib is really easy to use and does give you very pretty formatting.


as far as your code snippet, dont use document.write if you can help it. try

 document.getElementById("date").value = new Date().toUTCString();
link|improve this answer
feedback

Perhaps try the below. Uses JQuery, which is much cleaner in structure.

Good supporting thread.

link|improve this answer
feedback

It's not an answer to your question, but I strongly recommend not to rely on the users input, patience and having JavaScript activated. I therefore would suggest a server side approach to handle all the timestamps. Additionally it might cause problems for your stuff, if the user is mailing you from the future (different time zone).

link|improve this answer
feedback
<input id="date" name="date" />
<script type="text/javascript">
document.getElementById("date").value = new Date();
</script>
link|improve this answer
feedback

It sounds like you are going to be storing the value that input field contains after the form is submitted, which means you are using a scripting language. I would use it instead of JavaScript as most scripting languages have better time/date formatting options. In PHP you could do something like this:

<input id="date" name="date" value="<?php echo date("M j, Y - g:i"); ?>"/>

Which would fill the field with "Jun 16, 2009 - 8:58"

link|improve this answer
feedback

other choice

document.getElementById("my_date:box").value = ( Stamp.getDate()+"/"+(Stamp.getMonth() + 1)+"/"+(Stamp.getYear()) );
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.