Skip to content

Instantly share code, notes, and snippets.

@rugor
Created January 20, 2017 19:34
Show Gist options
  • Save rugor/d045520561b555b93650267e8e6f395b to your computer and use it in GitHub Desktop.
Save rugor/d045520561b555b93650267e8e6f395b to your computer and use it in GitHub Desktop.
JavaScript: jQuery Modernizr image SVG to PNG swap #rugor
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