I'm using angular single page application and is struck is particular place. Index page consist of ng-view
I'm getting value from json file into my home page which is shown in table and each name is covered with anchor tag
<h2 class="text-center">{{message}}</h2>
<div class="container">
<table class="table table-striped">
<tbody>
<tr ng-repeat = 'row in rows'>
<td><a href="#about">{{row.name}}<a></td>
<td>{{ row.phone}}</td>
<td>{{row.time}} </td>
</tr>
</tbody>
</table>
</div>
<hr />
As we can observe that first table data enclosed with anchor tag.
when I click on the anchor tag, I want the it to redirect to about page and the name I clicked should be displayed in about page
My about page is shown below
<div class="jumbotron text-center">
<h5>{{message}}</h5>
hi {{row.name}}
</div>
http://plnkr.co/edit/4VT5kr41zJZIphiS7q9L?p=preview
Please help me out getting data from one page to another.
Any help is appreciated