Looking to manipulate a DIV element generated by ng-repeat:
<div ng-repeat="data in info" >
<div id='plot_{{data.id}}'></div>
</div>
Here is the sequence of events:
- Information added to $scope.info
- ng-repeat executes
- Once the DIV is created (with its dynamic ID), I need to insert a plot into it using a specific routine.
How can I trigger this routine right after the ng-repeat rendering is complete?