Skip to content

Instantly share code, notes, and snippets.

@matijs
Created June 4, 2013 22:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matijs/5710110 to your computer and use it in GitHub Desktop.
Save matijs/5710110 to your computer and use it in GitHub Desktop.
Detect support for inline SVG
(function() {
var div = document.createElement("div");
div.innerHTML = "<svg/>";
return !!div.firstChild && div.firstChild.namespaceURI === "http://www.w3.org/2000/svg";
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment