Normally with KnockoutJs you would have something like this:
<input type="text" name="Capital" id="Capital" data-bind="value: capital">
During the binding, we would create an observable:
this.capital = ko.observable(100);
But let's say that we cannot add the data-bind attribute. Also not after page is loaded..and after that.. never.
How would we be able to bind to our viewmodel using Knockout ?