Answers for "set value input datetime-local"

1

html add mindate to datetime-local picker

<form>
    <label for="party">Enter a date and time for your party booking:</label>
    <input id="party" type="datetime-local" name="partydate" min="2017-06-01T08:30" max="2017-06-30T16:30">
  </form>
Posted by: Guest on July-29-2020
0

set datetime-local value javascript

var now = new Date();
now.setMinutes(now.getMinutes() - now.getTimezoneOffset());
document.getElementById('dt').value = now.toISOString().slice(0,16);
Posted by: Guest on October-12-2021

Code answers related to "set value input datetime-local"

Browse Popular Code Answers by Language