Skip to content

Instantly share code, notes, and snippets.

@pascalmaddin
Created May 28, 2014 07:15
Show Gist options
  • Save pascalmaddin/f49aae7e107b855c2263 to your computer and use it in GitHub Desktop.
Save pascalmaddin/f49aae7e107b855c2263 to your computer and use it in GitHub Desktop.
Fallback für svg-Grafiken mit Modernizr
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