I need to repeat 2 divs
together, i.e. I would like to do something like this:
<!-- some ng-repeat="item in items" goes here -->
<div>{{item.name}}</div>
<div>{{item.id}}</div>
<!-- end of ng-repeat -->
so that it produces a list of divs like
<div>name1</div>
<div>id1</div>
<div>name2</div>
<div>id2</div>
I cannot wrap my divs
into an additional element.
Is it possible to achieve this with angularjs?