Skip to content

Instantly share code, notes, and snippets.

@panzi
Created July 18, 2013 17:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save panzi/6031380 to your computer and use it in GitHub Desktop.
Save panzi/6031380 to your computer and use it in GitHub Desktop.
Detect SVG browser support.
function supportsSVG() {
return !!document.createElementNS && !!document.createElementNS("http://www.w3.org/2000/svg", "svg").createSVGRect;
}
@panzi
Copy link
Author

panzi commented Jul 18, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment