I created an web application in javascript and jQuery. Rendered dynamic html page using jQuery .load() method.
File home.html, included angularjs.min.js file. This page having one button "loadUsers". On click handler of the button loading "userList.html" file in a container ("#userContainer") same page.
The userList.html sample content is like below,
<div ng-app>
Enter Your Name: <input type="text" ng-model="txtName" /> <br />
Hello {{txtName}}
On input, the value is not binding with model. Angular is not applied for dynamically loaded template.
Any one guide me how to achieve this?

ng-appto match your main app module name. Also if you are loading that after page load (using ajax for example) you would need to manually bootstrap the angular app. A minimal reproducible example would help. Your explanation of all this is not very descriptive or clearangular.bootstrap(document, ['myNgApp']);it was working fine.