I've got some KnockoutJS code working - it pulls in a list and binds it to a table.
For the table-data which displays the name, I would like that to be an <a href=...> please, but not sure how. The name is still displayed, btw. But u can click on it.
here's my current code:-
<tbody data-bind="foreach: items">
<tr>
<td data-bind="text: name()"></td>
<td data-bind="text: price()"></td>
<td data-bind="text: endsOn()"></td>
</tr>
</tbody>
nothing too crazy.
i have another property called url which contains the full http://blah url to direct the users to. Also, I would like a new tab to open up, please.
Any suggestions?