Last active
August 29, 2015 14:12
-
-
Save kostasx/b9542b89b65f3c75f2bd to your computer and use it in GitHub Desktop.
Check for SVG Support using Javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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