Created
January 2, 2012 20:47
-
-
Save GraemeF/1552036 to your computer and use it in GitHub Desktop.
Hello world
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>Name: <input data-bind="value: name"/></p> | |
<h2>Hello, <span data-bind="text: name"> </span>!</h2> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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