Skip to content

Instantly share code, notes, and snippets.

@kostasx
Last active August 29, 2015 14:12
Show Gist options
  • Save kostasx/b9542b89b65f3c75f2bd to your computer and use it in GitHub Desktop.
Save kostasx/b9542b89b65f3c75f2bd to your computer and use it in GitHub Desktop.
Check for SVG Support using Javascript
// Check for SVG support
function supportSVG(){
return ( !! document.createElementNS && !! document.createElementNS('http://www.w3.org/2000/svg','svg').createSVGRect )
}
// Does it support SVG as image source?
function supportSVGimages(){
return document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Image", "1.1");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment