In my application i'm using the angular (click)-Event on an option-tag. The event is fired correctly in Chrome and Firefox. Sadly it isn't fired in IE11.
My code looks like this:
<select ...>
<ng-template ngFor ...>
<optgroup ...>
<option ... (click)="fireEvent()">...</option>
</optgroup>
</ng-template>
</select>
(The "..." are just abbreviations for some attributes that doesn't have any influence here.)
According to some other internet sources, my problem with the IE11 and the click Event in angular seems to be a known issue since....let's just say since a long time :D
There are some solutions for other HTML-Structures which doesn't work in this case.
Does anyone know some workaround for the IE11 ?