Skip to content

Instantly share code, notes, and snippets.

@cfsilence
Created July 15, 2012 23:53
Show Gist options
  • Save cfsilence/3119267 to your computer and use it in GitHub Desktop.
Save cfsilence/3119267 to your computer and use it in GitHub Desktop.
<script>
function AppViewModel() {
this.firstName = "Bert";
this.lastName = "Bertington";
}
ko.applyBindings(new AppViewModel());
</script>
<p>First name: <strong data-bind="text: firstName"></strong></p>
<p>Last name: <strong data-bind="text: lastName"></strong></p>
<script>
function AppViewModel() {
this.firstName = "Bert";
this.lastName = "Bertington";
}
ko.applyBindings(new AppViewModel());
</script>
<p>First name: <strong data-bind="text: firstName"></strong></p>
<p>Last name: <strong data-bind="text: lastName"></strong></p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment