Skip to content

Instantly share code, notes, and snippets.

@ericdouglas
Created January 29, 2014 16:22
Show Gist options
  • Save ericdouglas/8691517 to your computer and use it in GitHub Desktop.
Save ericdouglas/8691517 to your computer and use it in GitHub Desktop.
Study of "Recipes With AngularJS" - Chapter 1 - Recipe 2 - Example 01
<!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