i have the following ng-repeat code:
<div ng-repeat="item in items">{{item}}</div>
is there a way to programatically get into a javascript variable the 'final' html output of each of the repeated items instead of rendering it on the page?
hope that's clear enough.