I have a input box with type text:
<input type="text></input>
I have a list of names:
$scope.employees = [{
name: "vishnu"
}, {
name: "seenu"
}];
Now let it be only 2.
When I type v, it should show vishnu as suggestion. When I type se, it should showseenu` as suggestion. How can this be achieved?