Is it possible to clone an DOM element in AngularJS when clicked on it without using a custom function defined in controller/scope?
Example:
<div>
<div ng-click="create copy of this">some content</div>
</div>
becomes:
<div>
<div ng-click="create copy of this">some content</div>
<div ng-click="create copy of this">some content</div>
</div>