diff --git a/guide/english/angularjs/angularjs-ng-model/index.md b/guide/english/angularjs/angularjs-ng-model/index.md new file mode 100644 index 0000000000..d0cf32732e --- /dev/null +++ b/guide/english/angularjs/angularjs-ng-model/index.md @@ -0,0 +1,29 @@ +--- +title: AngularJS ng-model Directive +--- +# AngularJS ng-model Directive +------ +With the ng-model directive you can bind the value of an input field to a variable created in AngularJS. + +Example +```html +
+ Name: +
+ + +``` +Two-Way Binding example +```html +
+ Name: +

You entered: {{name}}

+
+``` + +More info @ [https://www.w3schools.com/angular/angular_model.asp](https://www.w3schools.com/angular/angular_model.asp)