Skip to content

Instantly share code, notes, and snippets.

@guiliredu
Created July 5, 2016 18:02
Show Gist options
  • Save guiliredu/423aaaab988abf96eb4201e6790a847d to your computer and use it in GitHub Desktop.
Save guiliredu/423aaaab988abf96eb4201e6790a847d to your computer and use it in GitHub Desktop.
Check with modernizr if SVG support is avaiable and replace to PNG
if (!Modernizr.svg) {
$('.js-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