Search code examples
knockout.jsknockout-3.0

Format telephone number binding


How can I format a telephone number like the following using knockout?

<a href="tel:12345679">
    call us
</a>

My attempt:

<a data-bind="attr:{'href:tel':telephone}">call us</a>

Solution

  • OK, I got it now:

    <a data-bind="attr:{'href': 'tel:'+telephone()}">call us</a>