I set the value in the input type = 'date', but I don’t want to be displayed in Chrome.
<input type='date' pattern='(?:(?:0[1-9]|1[0-9]|2[0-9]).(?:0[1-9]|1[0-2])|(?:(?:30).(?!02)(?:0[1-9]|1[0-2]))|(?:31.(?:0[13578]|1[02]))).(?:19|20)[0-9]{2}' value='09.05.2017'/> If you set value = '2017-05-09', then it shows in Chrome, but in Firefox it goes in the wrong recording format - '2017-05-09'.
Javascript will not be used in this case!
How to make both Firefox and Chrome show the value of '09 .05.2017 '? How can I explicitly set the date format for Chrome?