Hi i have the following field
<span id="myText" data=bind="text: name">default value</span>
I want to be able to initialize the value with like
var model = {
name = ko.observable("");
}
ko.apply(model);
However, i do not want the value "default value" to change. I want to preserve the original value.
How can i go about doing this?