Created
January 29, 2014 16:22
-
-
Save ericdouglas/8691517 to your computer and use it in GitHub Desktop.
Study of "Recipes With AngularJS" - Chapter 1 - Recipe 2 - Example 01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Chapter 1 - Recipe 2 - Example 01</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.10/angular.min.js"></script> | |
</head> | |
<body ng-app> | |
<h3>Now, we just type here... <input type="text" ng-model="name"></h3> | |
<h3>... and output here ~> {{ name }}</h3> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment