Skip to content

Instantly share code, notes, and snippets.

@DWboutin
Created September 10, 2014 18:35
Show Gist options
  • Save DWboutin/7f8a555483086f4f8b4d to your computer and use it in GitHub Desktop.
Save DWboutin/7f8a555483086f4f8b4d to your computer and use it in GitHub Desktop.
SVG PNG Fallback
if(!Modernizr.svg) {
$('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