Skip to content

Instantly share code, notes, and snippets.

@bryanstedman
Created June 7, 2013 16:23
Show Gist options
  • Save bryanstedman/5730507 to your computer and use it in GitHub Desktop.
Save bryanstedman/5730507 to your computer and use it in GitHub Desktop.
Provide PNG fallback for svg images
// http://dbushell.com/2013/02/04/a-primer-to-front-end-svg-hacking
if (!Modernizr.svg) {
$('img[src$=".svg"]').each(function() {
$(this).attr('src', $(this).attr('src').replace('.svg', '.png'));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment