I am using knockout js to bind the list of links in my table here is the code
<table class="table table-bordered">
<thead>
<tr>
<th style="width:10%;">#</th>
<th style="width:50%;">Link</th>
<th style="width:20%;">Active</th>
<th style="width:20%;">Action</th>
</tr>
</thead>
**<tbody data-bind="foreach:LinkList">**
<tr>
<td data-bind="text:$index()+1"></td>
<td><span data-bind="text:$data.LinkName.length <= 40 ? $data.LinkName : $data.LinkName.substring(0, 40) + '...'"></span></td>
<td>
<input type="checkbox" data-bind="checked:$data.IsActive" disabled />
</td>
<td>
<button class="btn btn-xs btn-primary" type="button" title="Edit"
data-bind="click:$parent.OnClickEditBtn">
<span class="glyphicon glyphicon-edit"></span>
</button>
<button class="btn btn-xs btn-danger" type="button" title="Delete"
data-bind="click:$parent.OnClickDeleteBtn">
<span class="glyphicon glyphicon-trash"></span>
</button>
</td>
</tr>
</tbody>
</table>
Here I used the foreach to bind the list of links to display it on HTML page I am attaching the link of that page also http://growingtab.com/links
but when you inspect the html page in page source then link is not showing in its source code? so how can i display those links in page source also? Is there is any way to show it?