Skip to content

Instantly share code, notes, and snippets.

@EmmanuelDemey
Created November 24, 2014 12:34
Show Gist options
  • Select an option

  • Save EmmanuelDemey/0bde9a50b52fcd00cb9e to your computer and use it in GitHub Desktop.

Select an option

Save EmmanuelDemey/0bde9a50b52fcd00cb9e to your computer and use it in GitHub Desktop.
Slide 23 - Two-Way Data Binding Magic
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