Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Created March 31, 2014 14:19
Show Gist options
  • Save ingozoell/9893323 to your computer and use it in GitHub Desktop.
Save ingozoell/9893323 to your computer and use it in GitHub Desktop.
Modernizr SVG 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