Answers for "change html to current date"

1

change date format in html

<input type="date" name="begin" 
    placeholder="dd-mm-yyyy" value=""
    min="1997-01-01" max="2030-12-31">
Posted by: Guest on April-05-2021
10

how to display current date in html

var today = new Date();
Posted by: Guest on December-04-2019

Code answers related to "change html to current date"

Browse Popular Code Answers by Language