I used this code (http://jsfiddle.net/ftfish/KyEr3/) to create a form, but I have an input with ng-model set to "value" and I need to print that value with {{ }} on that TD:
angular.element(document.getElementById('space-for-table')).append("<td>{{value}}</td>");
I made this way because I need to print on screen the HTML code (that's why I use <instead of <). But the {{value}} don't work with that.
Anyone know how can I get this working? I thought to transform the value of the ng-model in a variable (scope.value), but I'm not expert on AngularJS to achieve that.