Skip to content

Instantly share code, notes, and snippets.

@satoshun
Created March 27, 2013 15:14
Show Gist options
  • Save satoshun/5254976 to your computer and use it in GitHub Desktop.
Save satoshun/5254976 to your computer and use it in GitHub Desktop.
knockout js
$(document).ready(function() {
var models = {
name: ko.observable("name")
};
ko.applyBindings(models);
setTimeout(function(){
models.name("HAHAHA");
}, 2000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment