Created
November 24, 2014 12:34
-
-
Save EmmanuelDemey/0bde9a50b52fcd00cb9e to your computer and use it in GitHub Desktop.
Slide 23 - Two-Way Data Binding Magic
This file contains hidden or 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
| First name: <input type="text" id="txtFirstName" data-ng-model="firstName" />, | |
| Last name: <input type="text" id="txtLastName" data-ng-model="lastName"/> | |
| <button class="btn" id="btnReset" data-ng-click="firstName='';lastName='';"> | |
| Reset fields | |
| </button> | |
| <br/> | |
| Hello, Mister <i id="lblName">{{firstName}} {{lastName}}</i> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment