Skip to content

Instantly share code, notes, and snippets.

@GraemeF
Created January 2, 2012 20:47
Show Gist options
  • Save GraemeF/1552036 to your computer and use it in GitHub Desktop.
Save GraemeF/1552036 to your computer and use it in GitHub Desktop.
Hello world
<p>Name: <input data-bind="value: name"/></p>
<h2>Hello, <span data-bind="text: name"> </span>!</h2>
var ViewModel = function () {
this.name = ko.observable("");
};
ko.applyBindings(new ViewModel());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment