Created
November 1, 2014 03:55
-
-
Save Volker-E/9ff5494abcbf5502b6f2 to your computer and use it in GitHub Desktop.
SVG Detection Script via http://toddmotto.com/mastering-svg-use-for-a-retina-web-fallbacks-with-png-script/
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
// added 2014-10-30, taken from http://toddmotto.com/mastering-svg-use-for-a-retina-web-fallbacks-with-png-script/ | |
function supportsSVG() { | |
return !! document.createElementNS && !! document.createElementNS('http://www.w3.org/2000/svg','svg').createSVGRect; | |
} | |
if (supportsSVG()) { | |
document.documentElement.className += ' svg'; | |
} else { | |
document.documentElement.className += ' svg-off'; | |
var imgs = document.getElementsByTagName('img'); | |
var dotSVG = /.*\.svg$/; | |
for (var i = 0; i != imgs.length; ++i) { | |
if(imgs[i].src.match(dotSVG)) { | |
imgs[i].src = imgs[i].src.slice(0, -3) + 'png'; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment