In this html code date format is mm/dd/year but i want dd/mm/year format.
<label>LAUNCH DATE</label><br>
<h4><input type="date" placeholder="Launch date" name="date" class="form-control"
ng-model="user.date" required></h4><br>
In this html code date format is mm/dd/year but i want dd/mm/year format.
<label>LAUNCH DATE</label><br>
<h4><input type="date" placeholder="Launch date" name="date" class="form-control"
ng-model="user.date" required></h4><br>
There is no way possible to change the format in input[type=date]
if your want to change it than you can used to other library as like jquery ui library
According to @David Walschots