As the title said, how do I get the text inside a div using angularjs ? IE:
<div class='container' ng-app=''>
<input type='text' ng-model='qty'>
<div class='price'></div>
<div class='total'>{{qty * price}}</div>
</div>
The input is editable and can be filled with any numbers, while the price is fixed, not editable but it is different for every items, now how do I get the content of the price using AngularJS and multiply it with the qty inputted and show the total in the total div?
ng-repeatimplemented here?