I saw if there is a way to call the function that I created inside the scope.
<ul class="ui-listview ui-radiobutton" ng-repeat="meter in meters"> <li class = "ui-divider"> {{meter.DESCRIPTION}} {{htmlgeneration}} </li> </ul> $scope.htmlgeneration = function() { blah blah }
The function is called html generation. Essentially, I want to dynamically add html inside an LI element when using angular.
javascript angularjs
Derek parker
source share