im wondering if it's in angular any event which occurs when input is selected, (select) doesn't work when I click on input by mouse(only tab)
Html:
<div (seeked)="setFocus($event.target.name)">
// I tried (focus) (select) (input) (click)<-this one is closest
<input type="text" name="input1">
<input type="text" name="input2">
</div
I work on angular 2.4.1 [edited]