Skip to content

Instantly share code, notes, and snippets.

@nickberens360
Last active January 4, 2016 11:48
Show Gist options
  • Save nickberens360/8617146 to your computer and use it in GitHub Desktop.
Save nickberens360/8617146 to your computer and use it in GitHub Desktop.
Angularjs: Simple data binding example
<article ng-app ="app">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.10/angular.min.js"></script>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<h1>Hello {{yourName}}!</h1>
</article>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment