Hi I have following table in ng-repeat
<div ng-repeat ="item in items">
<span>{{item.name}}></span>
<span>{{item.age}}></span>
</div>
what I want to do is Each row with mouse over is highlighted and clickable to passing the item to further process.
Please let me know how i can achieve this