In AngularJS, how can we set the min attribute of input type=\"date\" to current date (today\'s) ?
min
input type=\"date\"
just add in your controller
$scope.today=new Date() // calculates current date
and in your html code add -
min-date="today"