Jquery is ignoring all Angular ng binds(ng-app,ng-controller,ng-bind..) on page change.They are working in index but when I navigate to other pages ng-s just aren't working.Is there a way to "rebind" angular when page dynamically changes?
in first html:
<section data-role="page" ng-app="aki" ng-controller="akicontroller">
<a href="sec.html"></a>
</section>
in second html ng-app and ng-controller are ignored:
<section data-role="page" ng-app="aki" ng-controller="akicontroller">
</section>
Pages are loaded via jquery in dom.
Thank you in advance.