Can someone help with this coding issue?
"elements" : ["<p>Element 1</p>","<span>Element 2</span>"]
I want to achieve the following output:
<div id="wrapper">
<p>Element 1</p>
<span>Element 2</span>
</div>
Is there a way to accomplish this without relying on ng-repeat ?