This is a simple *viewmodel* - JavaScript that defines the data and behavior of your UI
function AppViewModel() {
this.firstName = "Rahul";
this.lastName = "Sharma";
}
// Activates knockout.js
ko.applyBindings(new AppViewModel());
and here is your output screen and link of js fiddle
No comments:
Post a Comment