I am trying to use directive to create and append several tags to a as shown below: module.directive(\'createControl\', function(){ re
as shown below: module.directive(\'createControl\', function(){ re
module.directive(\'createControl\', function(){ re
app.directive('createControl', function() { return { scope: { createControl:'=' }, link: function(scope, element, attrs){ element.text(scope.createControl); } } })