I have created a directive called first. Like below
<div first>
<p>aaaaaa11111</p>
</div>
angular js like
var testdirective = angular.module("testdirective",[]);
testdirective.directive('first', function()
{
return
{
transclude: true,
template: '<div> This is my directive content</div>'
}
});
on running the file "
aaaaaa11111
" content is not showing y.....