Skip to content

Instantly share code, notes, and snippets.

@motowilliams
Created July 17, 2012 16:35
Show Gist options
  • Save motowilliams/3130490 to your computer and use it in GitHub Desktop.
Save motowilliams/3130490 to your computer and use it in GitHub Desktop.
Knockout View
<div>
<input data-bind="value: address"/>
<button data-bind="click: search">Search</button>
</div>
<!-- ko if: list().length > 0 -->
<h5 data-bind="text: list().length"></h5>
<!-- /ko -->
<!-- ko foreach: list -->
<div class="result" data-bind="text: addr"></div>
<!-- /ko -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment