Is there a way to remove the ng-scope and ng-binding attribute values ββthat are dynamically added to the HTML generated by AngularJS?
<tr ng-repeat="student in students" ng-class="isGrey[$index]" ng-click="toggleClass($index)" class="ng-scope"> <td class="ng-binding">1</td> <td class="ng-binding">Mahesh</td> <td class="ng-binding">Sapkal</td> </tr>
source share