I have an app in angularjs which uses $interval() in background and requests datas form the database via PHP every seconds.
I then use track by $index which really helps on performance.
<tr ng-repeat="user in users track by $index">
<td>{{user.name}}</td>
</tr>
But I want to change the text color for 1 second when the data for that <td>
changes.