📜 ⬆️ ⬇️

Element Date Picker is available in Chrome Canary and Chromium

The latest update of Chrome Canary and Chromium builds has included support for a new element for the forms - the Date Picker . By setting type = "date" for input, we will see a small triangle next to the text field. By clicking on it, the user will be able to use the date picker to select the date and its parameters, all without using JavaScript.

<input type="date" min="2010-08-14" max="2011-08-14" value="2010-08-14"/> 



In the comments to the news, Paul Irish explained that this is not the last version of the implementation of this element and that the developers will listen to any constructive feedback.
')
Since this is the native control of the browser, there is no possibility yet to apply custom styles to it.

It is also worth noting that for the first time such a calendar was introduced in Opera 9.0. In Opera 11, it looks like this:

Source: https://habr.com/ru/post/142271/


All Articles