Simple Data Binding with AngularJS
HTML
<h1>Simple Data Binding with AngularJS</h1>
<br />
<div ng-app>
Name: <input type="text" ng-model="name" />
<br /><br />
Welcome to AngularJS {{name}}
</div>
JavaScript
//No JavaScript needed aside from the reference to the AngularJS script.
//The HTML tab has all of the code for this demo
var tmp=