Hello, a simple Angular question, I have:
<div class="_minimal_size margin_10_middle">
<div class="_50 espaciado_0_20">
<p ng-bind-html="eirana_knows.feedback"></p>
</div>
<br class="clear"/>
</div>
If I bind HTML information, works perfectly fine. Now, What I'm tring to do, is to bind, actually angular code, such as {{2+2}} to give an example.
So, is there any way to make this kind of binding possible? If so, I'm looking for a simple approach, such as modifying this line:
<p ng-bind-html="eirana_knows.feedback"></p>
For something that allows me to bind angular and process it.
Kind regards; Chris
<p ng-bind="2 + 2"></p>
works fine – Aks1357 Aug 13 at 19:40