Skip to content

Instantly share code, notes, and snippets.

@rependa
Last active October 21, 2015 20:06
Show Gist options
  • Select an option

  • Save rependa/c5da241f67dd8ee02d94 to your computer and use it in GitHub Desktop.

Select an option

Save rependa/c5da241f67dd8ee02d94 to your computer and use it in GitHub Desktop.
JYMQVJ
<div ng-app="" ng-init="quantity=1;price=5">
<p>
<label for="quantity">Quantity:</label>
<input type="number" ng-model="quantity" id="quantity">
</p>
<p>
<label for="costs">Costs:</label>
<input type="number" ng-model="price" id="price">
</p>
<p>Total in dollar: {{ quantity * price }}</p>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.14/angular.min.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment