Skip to content

Instantly share code, notes, and snippets.

@nielk
Created January 24, 2014 13:55
Show Gist options
  • Save nielk/8597677 to your computer and use it in GitHub Desktop.
Save nielk/8597677 to your computer and use it in GitHub Desktop.
/**
* SVG not supported ? png fallback
*/
if (!document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Image", "1.1")) {
$('img[src*="svg"]').attr('src', function() {
return $(this).attr('src').replace('.svg', '.png');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment