Disable native datepicker in Google Chrome

Alexandre picture Alexandre · Jul 4, 2012 · Viewed 98.7k times · Source

Date picker landed on Chrome 20, is there any attribute to disable it? My entire system uses jQuery UI datepicker and it's crossbrowser, so, I want to disable Chrome native datepicker. Is there any tag attribute?

Answer

Yacine Zalouani picture Yacine Zalouani · Sep 4, 2012

To hide the arrow:

input::-webkit-calendar-picker-indicator{
    display: none;
}

And to hide the prompt:

input[type="date"]::-webkit-input-placeholder{ 
    visibility: hidden !important;
}