What is the best way to change this date format(Y-m-d) to this date Format(d-m-Y) in DOM using javascript.
This is what I have now:
<html>
<body>
<div>2019-07-01</div>
<input type="text" value="2019-05-01">
</body>
</html>
This is the way I would like it to be:
<html>
<body>
<div>01-07-2019</div>
<input type="text" value="01-05-2019">
</body>
</html>