Add static text on Knockout.js data-bind
knockout.js
Solution
Can you not put the static text inside the paragraph tag along with a span tag and data-bind on the span?
<p>text: <span data-bind="[whatever]" /></p>
Problem
Is it possible to add static text to data-bind with something like the example below: ``` <p data-bind="text:someProperty"></p> ``` I would like to add static text as below: ``` <p data-bind="text:' + $' + someProperty"></p> ```