I have a list of sound, the requirement is relevant sound should play when the mouse hover on the sound name in the list.
<select class="cc-select-dropdown form-control" id="defaultMerge" formControlName="DefaultNotificationAlert">
<option *ngFor="let option of soundList" (mouseover)='playSound()' [ngValue]="option">{{option}}</option>
The problem is I couldn't find any event that works with the select options