Skip to content

Instantly share code, notes, and snippets.

@jasperrooduijn
Created August 7, 2013 13:37
Show Gist options
  • Save jasperrooduijn/6174113 to your computer and use it in GitHub Desktop.
Save jasperrooduijn/6174113 to your computer and use it in GitHub Desktop.
/*------------------------------------------------------------------------*/
/* Modernizr fallback for <img> tags using SVG (will replace SVG with PNG when not supported)
/* http://bit.ly/XajRsC
/*------------------------------------------------------------------------*/
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