show time-picker on click whole input type time HTML5 field not only on the little clock icon
For now, it is only triggered while clicking on a small clock icon inside the field, I want it to be trigger on the whole field click.
show time-picker on click whole input type time HTML5 field not only on the little clock icon
For now, it is only triggered while clicking on a small clock icon inside the field, I want it to be trigger on the whole field click.
I solved by adding this line to css..
input[type="time"]::-webkit-calendar-picker-indicator{
pointer-events: none;
}
I hope it helps someone else!