Having zero experience with Knockout but knowing Javascript and Jquery, I am facing a problem.
<input type="text"
value="Original Value"
data-bind="value: description,
valueUpdate: 'afterkeydown'" />
var viewModel = {
description:ko.observable("")
};
ko.applyBindings(viewModel);
http://jsfiddle.net/243b1z4h/1/
The user types something in that input text box, but the property value
still has the old/original value (using the browser inspector tool) and does not update it.
How am I able to force knockout to always update the input value
?