Is there a way to create a calendar that appears if you click the down arrow on html5 date input?
<form> <label for="f-duedate">Due date</label> <input id="f-duedate" type="date" name="duedate" data-date-format="dd.mm.YYYY"> </form>

http://jsfiddle.net/no8a17eo/1/
I know that there is a pseudo selector for styling the input field itself:
::-webkit-datetime-edit-fields-wrapper { } ::-webkit-datetime-edit-text { } ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-year-field { } ::-webkit-inner-spin-button { display: none; } ::-webkit-calendar-picker-indicator:hover { background:none; }
At a minimum, I only need to work with the latest version of Google Chrome
source share