Skip to content

Instantly share code, notes, and snippets.

@sidcool1234
Last active September 3, 2018 04:25
Show Gist options
  • Save sidcool1234/9e3891807b8a9340126e9d8f1f9865d5 to your computer and use it in GitHub Desktop.
Save sidcool1234/9e3891807b8a9340126e9d8f1f9865d5 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta charset="utf-8"/>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"
data-semver="1.0.8"></script>
<script src="app.js"></script>
</head>
<body ng-controller="OuterCtrl">
<p>your input is being bind from model. Your Input is : {{name}}!</p>
<label>Your Input:
<input ng-model="name" type="text"/>
</label>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment