i need help. I have a project and i need duplicate html nodes dynamically. Those nodes have ng-bind and ng-model attributes like this:
<input class="quest_model" type="text" data-ng-model="quest">
<span ng-bind="quest" class="quest_bind"></span>
I can change this attributes whith Jquery like this:
quest.find("span.quest_bind").attr("ng-bind", "quest" + seq);
but, when i press a button to duplicate a node, the magic of angularJS(ng-bind) not happens. anyone can help me?