Skip to content

Instantly share code, notes, and snippets.

@sergiolopes
Created August 2, 2013 19:03
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergiolopes/6142473 to your computer and use it in GitHub Desktop.
Save sergiolopes/6142473 to your computer and use it in GitHub Desktop.
Detect SVG support with pure JS
<script>document.documentElement.className = 'js '+ (!!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', "svg").createSVGRect ? 'svg':'nosvg')</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment