Where did the clear button go on date type input elements in Chrome? Where did the clear button go on date type input elements in Chrome? google-chrome google-chrome

Where did the clear button go on date type input elements in Chrome?


It was reported as a bug:

https://bugs.chromium.org/p/chromium/issues/detail?id=1087490#c1

https://bugs.chromium.org/p/chromium/issues/detail?id=1087501

And someone in the bug discussion suggested a workaround: add a button that will clear the date-local element value:

<input id=el type=datetime-local value="2025-07-01T12:44"><button onclick="javascript:el.value=''">X</button>

https://jsfiddle.net/cxpt4r8b/