Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The new HTML5 input types are great. Opera's new built-in date picker is a breeze, and Chrome has at least supported the new input type with a spin-wheel implementation.

But is there any way to set the default value of the date field to today's date? With Opera, I can choose 'Today' from the date picker, and as soon as I click on either of the step buttons in Chrome, it increments/decrements from today's date.

I'm not shy to code a solution to this minor problem, but it seems silly to me that both of the browsers are fully aware of the current date but won't automatically just pop it in (at least as a placeholder).

share|improve this question

9 Answers

Like any HTML input field, the browser will leave it empty unless a default value is specified with the value attribute.

Unfortunately HTML5 doesn't provide a way of specifying 'today' in the value attribute (that I can see), only a RFC3339 valid date like 2011-09-08. Sorry, that doesn't help much!

share|improve this answer
1  
Thanks, the reference to the RFC helped me a lot! – Alexander van Trijffel Jul 6 '12 at 11:20
1  
Yes thanks, I was having trouble since i was setting the default to '9/8/2011' but '2011-09-08' works – andrewtweber Aug 17 '12 at 20:50
1  
So others don't have to dig through the RFC, that's YYYY-MM-DD. – JohnK Apr 12 at 15:08

The JavaScript Date object provides enough built-in support for the required format to avoid doing it manually:


jQuery:

$(document).ready( function() {
    $('#datePicker').val(new Date().toJSON().slice(0,10));
});​


Pure JS:

document.getElementById('datePicker').value = new Date().toJSON().slice(0,10);


You could also use toISOString() instead of toJSON().

share|improve this answer
I really like this clean bit of code! thanks – Hulvej Mar 26 at 10:31
Watch out if you're supporting mobile. On Android 4.0.3 (at least) I've had issues where the new date selected via the popup date control is appended to todays date, rather than replaces it. E.g. you can end up with 2013-03-252013-03-27 rather than 2013-03-25, and there's no way for the user to change it. – Ben Clayton Mar 27 at 14:41

You could fill the default value through javascript as seen here: http://jsfiddle.net/7LXPq/

$(document).ready( function() {
    var now = new Date();
    var month = (now.getMonth() + 1);               
    var day = now.getDate();
    if(month < 10) 
        month = "0" + month;
    if(day < 10) 
        day = "0" + day;
    var today = now.getFullYear() + '-' + month + '-' + day;
    $('#datePicker').val(today);
});

I would probably put a bit of extra time to see if the month and date are single digits and prefix them with the extra zero...but this should give you an idea.

EDIT: Added check for the extra zero

share|improve this answer
In Opera (tested on Opera 12 / Windows) this doesn't work if you don't put the leading zeros in month and day. – Renato Jul 3 '12 at 6:01

The following code works well:

<input type="date" value="<?php echo date('Y-m-d'); ?>" />

Note that this relies on PHP.

share|improve this answer
4  
Your answer depends on php completely. – Yëco Nov 6 '12 at 22:04
If you're contact form is on a PHP page (for example, on a WordPress page or shortcode), this works perfectly. Many thanks Isham! – tristanojbacon Nov 14 '12 at 15:34
4  
You could reduce redundancy by changing <?php echo date('Y-m-d', strtotime(date('Y/m/d'))); ?> to <?php echo date('Y-m-d'); ?> – Murray Smith Jan 21 at 18:21

HTML

<input type="date" id="theDate">

JS

$(document).ready(function() {
    var date = new Date();

    var day = date.getDate();
    var month = date.getMonth() + 1;
    var year = date.getFullYear();

    if (month < 10) month = "0" + month;
    if (day < 10) day = "0" + day;

    var today = year + "-" + month + "-" + day;       
    $("#theDate").attr("value", today);
});

demo

If you don't want to use jQuery you can do something like this

HTML

<input type="date" id="theDate">

JS

var date = new Date();

var day = date.getDate();
var month = date.getMonth() + 1;
var year = date.getFullYear();

if (month < 10) month = "0" + month;
if (day < 10) day = "0" + day;

var today = year + "-" + month + "-" + day;       
document.getElementById("theDate").value = today;

demo

share|improve this answer

Very Simple, Just use server side languages like PHP,ASP,JAVA or even you can use simple javascript.

Here is the solution

<?php
  $timezone = "Asia/Colombo";
  date_default_timezone_set($timezone);
  $today = date("Y-m-d");
?>
<html>
  <body>
    <input type="date" value="<?php echo $today; ?>">
  </body>
</html>

That's it. Simple.

share|improve this answer
5  
Say "simple" again. It makes you look so much smarter. – Blazemonger Dec 11 '12 at 20:12

And for those using ASP VBScript

<%
'Generates date in yyyy-mm-dd format
Function GetFormattedDate(setDate)
strDate = CDate(setDate)
strDay = DatePart("d", strDate)
strMonth = DatePart("m", strDate)
strYear = DatePart("yyyy", strDate)
If strDay < 10 Then
  strDay = "0" & strDay
End If
If strMonth < 10 Then
  strMonth = "0" & strMonth
End If
GetFormattedDate = strYear & "-" & strMonth & "-" & strDay
End Function

%>

And then in the body, your element should look something like this

<input name="today" type="date" value="<%= GetFormattedDate(now) %>" />

Cheers!

share|improve this answer

Since there's no default method of setting the value to today's date, I would say this should be dependent upon it's application. If you're looking to maximize your audience's exposure to the date picker, then use a server-side script (PHP, ASP, etc.) to set the default value.

However, if it's for the administration console of the CMS, and you know that the user will always have JS on or your site trusted, then you can safely use JS to fill the default value, as per jlbruno.

share|improve this answer

this works for me:

document.getElementById('datePicker').valueAsDate = new Date();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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