Angular - Exclude div from focusout

93 Views Asked by At

This span is located within the input field. I would like to exaclude the span from the input's focusout event. any ideas?

<input type="text" (focusin)="onFocusIn($event)" (focusout)="onFocusOut($event)"/>
  <span (mousedown)="onClearClick()"></span>

                
0

There are 0 best solutions below