In my current setup, I have an array of objects structured as shown below:
$scope.people = [{name:
{last:"Doe", first:"John"}},
{name:
{last:"Smith", first:"Joe"}}];
My goal is to implement a live filter feature based on last names using a text box.
To see the implementation in action, you can visit this jsfiddle link: http://jsfiddle.net/HB7LU/4287/
Your assistance on this matter would be greatly appreciated. Thank you!
Edit: Apologies for providing the incorrect jsfiddle link initially.