I'm looking for a way to implement a moving table-row to indicate my current time in a table with timestamps.
<table>
<tr ng-repeat="timestamp in timestampArray">
<td>{{timestamp}}</td>
</tr>
</table>
Current table:
What i want to achieve:
The table-row with "NOW" should move automatically according to the current time.
Thanks for the help.