On xlink:href being deprecated in SVG

Should I be using

<use href="#whatever" />

Instead of:

<use xlink:href="#whatever" />

???

Using: href

Using: xlink:href

https://css-tricks.com/on-xlinkhref-being-deprecated-in-svg/

https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/xlink:href

Deprecated since SVG 2
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

Note: SVG 2 removed the need for the xlink namespace, so instead of xlink:href you should use href.

It looks like your question is already answered in those links.

4 Likes

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.