Using jQuery date picker before, I now converted some date fields into forms on my website into an HTML5 date picker.
The documentation says that Safari is supported: however, currently it only displays a text box (while Chrome and other browsers display the date correctly).
echo "<input type='date' name='Date' min='$todaymin'>";
(the same applies without the min attribute)
This is my line of code - am I doing something wrong or am I just reading the documentation incorrectly and is not supported in Safari?
Thank!
source
share