I have this snippet of code on my DOM that initializes the current date on my table.
<table id="daysTableLeft" class="table table-hover" ng-init="getHorraire(pickDateRow,$index,0)">
<tr ng-repeat="fd in getFullDayDate track by $index"
ng-click="getHorraire(fd.myDate,$index,1)"
style="cursor:pointer" ng-model="pickDateRow"
ng-class="{activeLink: $index===selectedIndex, weekend: fd.dayName=='Samedi'|| fd.dayName=='Dimanche'}">
<td style="font-size:14px;" id="{{fd.$index}}"> {{fd.fullDate}}, 2018</td>
</tr>
<tr><td style="height:80px;"></td></tr>
</table>
For instance, if today's date is 30/03/2018, I know that the 30th date is located at the bottom element. I then have to manually scroll to see today's date.
Is there a possibility to automatically scroll to the current date?