Skip to content

Instantly share code, notes, and snippets.

@rjmacarthy
Last active August 29, 2015 14:14
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 rjmacarthy/ebdedab43aac852d72f0 to your computer and use it in GitHub Desktop.
Save rjmacarthy/ebdedab43aac852d72f0 to your computer and use it in GitHub Desktop.
Knockout Sample With Initial Value
var ViewModel = {
inputValue : ko.observable()
};
ko.applyBindings(ViewModel);
var value = $('#text').data('value');
ViewModel.inputValue(value);
console.log(ViewModel.inputValue());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment