Answers for "input date value today"

1

html input date default today

<!-- HTML -->
<input type="date" class="today">

<script>
  // JQuery
  $(document).ready( function() {
    $('.today').val(getToday());
  });
  
  function getToday(){
	const local = new Date();
    local.setMinutes(local.getMinutes() - local.getTimezoneOffset());
	return local.toJSON().slice(0,10);
  }
</script>
Posted by: Guest on September-03-2021
1

how to set input date to today date on initialization

date: new FormControl((new Date()).toISOString().substring(0, 10)),
Posted by: Guest on December-17-2020

Browse Popular Code Answers by Language