I can't change display Input value mm/dd/yyyy to dd/mm/yyyy in MVC C# Help Me, Thank'all
This is my code
- In file .cshtml:
<div>
<label for="pass" class="label">What is your Birthday?</label>
<input id="pass" type="date" name="birthdate" class="input">
</div>
I tried to try some of this code but no success.
- $("input").on("change", function() {
this.setAttribute(
"data-date",
moment(this.value, "MM-DD-YYYY")
. format( this.getAttribute("data-date-format") )
)
}).trigger("change")
Thank's All and help Me, Thanks again!