Skip to content

Instantly share code, notes, and snippets.

@idmontie
Created February 19, 2015 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save idmontie/5cca3e8476c0ea8bb2d4 to your computer and use it in GitHub Desktop.
Save idmontie/5cca3e8476c0ea8bb2d4 to your computer and use it in GitHub Desktop.
KnockoutJS Example
<p data-bind="text: name"></p>
<script>
var viewModel = function () {
this.name = 'Ivan';
};
ko.applyBindings( viewModel );
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment