I\'m using a ng-repeat inside a Html: The reason why you don't get Angular binding inside your child is because you lack compiling it. When the link function runs, the element has already been compiled, and thus, Angular augmented. All you got to do is to Another tip: you never enclose your elements in jQuery ($). If you have jQuery in your page, all Angular elements are already a jQuery augmented element. Finally, the correct way to solve what you need is to use the directive As a last effort, read the entire Directive guide, this is a valuable resource. element together with a directive.
$compile
your content by hand. First of, don't eval your template, or you will lose your binding tips.app.directive('createTable', function ($compile) {
return {
link: function (scope, element, attrs) {
var contentTr = angular.element('<tr ng-show="false"><td>test</td></tr>');
contentTr.insertBefore(element);
$compile(contentTr)(scope);
}
}
});
compile
function (read 'Compilation process, and directive matching' and 'Compile function') to modify elements before its compilation.