I have div
with <ul>
and <li>
that show after ngIf
performed as below:
<input type="text" />
<button (click)="ShowDropDown=true;">Show</button>
<div *ngIf="ShowDropDown">
<ul>
<li (mousedown)="...">...</li>
<li (mousedown)="...">...</li>
<li (mousedown)="...">...</li>
</ul>
</div>
I need to set focus on the very first element of <li>
after clicking on the Show
button.