I am creating an HTML table that looks like this:
<table id="#webappname">
<tr ng-repeat="data in d">
<td>1 {{data}}</td>
<td>2 hey !</td>
</tr>
</table>
To create this, I am using
angular.element("#webapp").append("<table [...]</table>");
I want the AngularJS template within the table to be interpreted by Angular (similar to jQuery.live()
). What is the best approach for achieving this?