SVG rendering in Microsoft Edge

I use tags <svg>using <use>node to duplicate images in my html page. But this is not rendering in Microsoft Edge. Is there a workaround? Thank.

+4
source share
1 answer

You need to use something like svg4everybody to make this work. In older versions of the script, there was no valid UA string, but the latest version should properly configure Edge now.

Noted this myself after upgrading to Windows 10 and updating the script fixed it. IE 9-11 worked fine before the update, but not Edge, because UA was not included in the check. The npm version has also just been updated so you can capture it as well.

+2
source

All Articles