I'm build a angular project that I can't get classList from svg use tag in IE11, for example:
<svg class="a b c>
<use class="d e f" [attr.xlink:href]="iconPath"/>
</svg>
I call classList of use tag in IE11, it just returned undefined. But if call classList of svg tag, it's working fine.
Note: iconPath is a component variable.
I'm build a angular project that I can't get classList from svg use tag in IE11, for example:
I call
classListofusetag in IE11, it just returnedundefined. But if callclassListofsvgtag, it's working fine.Note:
iconPathis a component variable.