Set date input field's max date to today

Html

Html Problem Overview


I just have a simple line of code like this:

<input type='date' min='1899-01-01' max='2000-01-01'></input>

Is there a simple way to set the max date to "today" instead of 2000-01-01? Or do I have to use Javascript to do this?

Html Solutions


Solution 1 - Html

JavaScript only simple solution

datePickerId.max = new Date().toISOString().split("T")[0];

<input type="date" id="datePickerId" />

// below trick also works! Thanks jymbob for the comment.
datePickerId.max = new Date().toLocaleDateString('en-ca')

Solution 2 - Html

You will need Javascript to do this:

HTML

<input id="datefield" type='date' min='1899-01-01' max='2000-13-13'></input>

JS

var today = new Date();
var dd = today.getDate();
var mm = today.getMonth() + 1; //January is 0!
var yyyy = today.getFullYear();

if (dd < 10) {
   dd = '0' + dd;
}

if (mm < 10) {
   mm = '0' + mm;
} 
    
today = yyyy + '-' + mm + '-' + dd;
document.getElementById("datefield").setAttribute("max", today);

JSFiddle demo

Solution 3 - Html

In lieu of Javascript, a shorter PHP-based solution could be:

 <input type="date" name="date1" max="<?= date('Y-m-d'); ?>">

Solution 4 - Html

Javascript will be required; for example:

$(function(){
    $('[type="date"]').prop('max', function(){
        return new Date().toJSON().split('T')[0];
    });
});

JSFiddle demo

Solution 5 - Html

toISOString() will give current UTC Date. So to get the current local time we have to get getTimezoneOffset() and subtract it from current time

document.getElementById('dt').max = new Date(new Date().getTime() - new Date().getTimezoneOffset() * 60000).toISOString().split("T")[0];

<input type="date" min='1899-01-01' id="dt" />

Solution 6 - Html

I am using Laravel 7.x with blade templating and I use:

<input ... max="{{ now()->toDateString('Y-m-d') }}">

Solution 7 - Html

Yes, and no. There are min and max attributes in HTML 5, but

> The max attribute will not work for dates and time in Internet Explorer 10+ or Firefox, since IE 10+ and Firefox does not support these input types.

EDIT: Firefox now does support it

So if you are confused by the documentation of that attributes, yet it doesn't work, that's why.
See the W3 page for the versions.

I find it easiest to use Javascript, s the other answers say, since you can just use a pre-made module. Also, many Javascript date picker libraries have a min/max setting and have that nice calendar look.

Solution 8 - Html

An alternative to .split("T")[0] without creating a string array in memory, using String.slice():

new Date().toISOString().slice(0, -14)

datePickerId.max = new Date().toISOString().slice(0, -14);

<input type="date" id="datePickerId" />

Solution 9 - Html

Is you don't want to use external scripts, but rather set the max limit right in the HTML input element, inline as so:

<input type="date" max="3000-01-01" onfocus="this.max=new Date().toISOString().split('T')[0]" />

I've intentionally added the max attribute with a date far into the future, because it seems Chrome browser change the width of the field once a max attribute is set, so to avoid that, I had it pre-set.

See live demo

Solution 10 - Html

Examples with jQuery and JavaScript:

$('#arrival_date').attr('min', new Date().toISOString().split('T')[0])

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<input type="date" name="arrival_date" id="arrival_date" class="form-control" aria-label="...">

document.getElementById('arrival_date').setAttribute('min', new Date().toISOString().split('T')[0])

<input type="date" name="arrival_date" id="arrival_date" class="form-control" aria-label="...">

Solution 11 - Html

it can be useful : If you want to do it with Symfony forms :

 $today = new DateTime('now');
 $formBuilder->add('startDate', DateType::class, array(
                   'widget' => 'single_text',
                   'data'   => new \DateTime(),
                   'attr'   => ['min' => $today->format('Y-m-d')]
                   ));

Solution 12 - Html

A short but may be less readable version of one of the previous answers.

   <script type="text/javascript">
    $(document).ready(DOM_Load);

    function DOM_Load (e) {
        $("#datefield").on("click", dateOfBirth_Click);
    }

    function dateOfBirth_Click(e) {
        let today = new Date();
        $("#datefield").prop("max", `${today.getUTCFullYear()}-${(today.getUTCMonth() + 1).toString().padStart(2, "0")}-${today.getUTCDate().toString().padStart(2, "0")}`);
    }
    
</script>

Solution 13 - Html

Template: ejs

Using Node.js, express.js and template System ejs:

<input id="picOfDayDate" type="date"  name="date-today"
    value="<%= new Date().toISOString().split("T")[0] %>" 
    min='1995-06-16' 
    max="<%= new Date().toISOString().split("T")[0] %>" 
    class="datepicker" 
>

Solution 14 - Html

Yes... you have to use Javascript. My solution below is just yet another option which you can pick up.

var today = new Date().toJSON().slice(0, 10);
var date = $('#date-picker');
date.attr('max', today);

Solution 15 - Html

I also had same issue .I build it trough this way.I used struts 2 framework.

  <script type="text/javascript">

  $(document).ready(function () {
  var year = (new Date).getFullYear();
  $( "#effectiveDateId" ).datepicker({dateFormat: "mm/dd/yy", maxDate: 
  0});

  });


  </script>

        <s:textfield name="effectiveDate" cssClass="input-large" 
   key="label.warrantRateMappingToPropertyTypeForm.effectiveDate" 
   id="effectiveDateId" required="true"/>

This worked for me.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJack JohnsonView Question on Stackoverflow
Solution 1 - HtmlTRiNEView Answer on Stackoverflow
Solution 2 - HtmlShrinivas PaiView Answer on Stackoverflow
Solution 3 - HtmlraufView Answer on Stackoverflow
Solution 4 - HtmlvmkcomView Answer on Stackoverflow
Solution 5 - HtmljafarbtechView Answer on Stackoverflow
Solution 6 - HtmlStrabekView Answer on Stackoverflow
Solution 7 - HtmlC.C.View Answer on Stackoverflow
Solution 8 - HtmlT JView Answer on Stackoverflow
Solution 9 - HtmlvsyncView Answer on Stackoverflow
Solution 10 - HtmlBadmousView Answer on Stackoverflow
Solution 11 - HtmlGuillaume HarariView Answer on Stackoverflow
Solution 12 - HtmlKiril DobrevView Answer on Stackoverflow
Solution 13 - HtmlFederico BaùView Answer on Stackoverflow
Solution 14 - HtmlNowdeenView Answer on Stackoverflow
Solution 15 - HtmlSusampathView Answer on Stackoverflow