I googled for a way to change the format of the HTML date input value from mm/dd/yyyy to the Italian way "gg/mm/aaaa".
I know that it is enough to change the browser language to Italian but our client asked to force the default value to the italian format "gg/mm/aaaa". Is there a way using code?
HTML:
<table>
<tr>
<td class="searchLabel">Departure Date:</td>
<td><input type="date" id="departureDate" ></td>
</tr>
</table>
JS:
var departureDate = document.getElementById("departureDate").value;