I'm starting with KnockoutJS and would like to know if it has a way to attach a link received by AJAX / JSON to a <a href="meu link aqui">Meu link</a>
tag.
HTML:
<div data-bind="text: url"></div>
<hr/>
<a data-bind="href: url">Google</a>
Javascript:
function App() {
this.url = "http://www.google.com.br/";
}
ko.applyBindings( new App() );
In JSFiddle: link