Skip to content

Instantly share code, notes, and snippets.

@reinink
Created August 2, 2013 15:36
Show Gist options
  • Save reinink/6140855 to your computer and use it in GitHub Desktop.
Save reinink/6140855 to your computer and use it in GitHub Desktop.
Automatically replace SVG images on non-supporting browsers
// Requires Modernizr
if (!Modernizr.svg || !Modernizr.inlinesvg)
{
$('img').each(function()
{
this.src = this.src.replace('.svg', '.png');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment