The following seems not to work with knockoutjs once the div data bind replace <span> to its data-binding:
<script..>
<div data-bind="text: name">
<span data-bind="text: index"></span>
</div>
</script>
And the result is:
<div>My data-bind text</div>
Is possible have this nested behavior that I want? I dont want to put out the span as sibling.