Skip to content

Instantly share code, notes, and snippets.

@brettsnippets
Created May 22, 2014 23:27
Show Gist options
  • Save brettsnippets/4a000877c0eb29a14e08 to your computer and use it in GitHub Desktop.
Save brettsnippets/4a000877c0eb29a14e08 to your computer and use it in GitHub Desktop.
Cross Browser SVG
<img data-png="potato.png" data-svg="potato.svg">
<noscript><img src="potato.png" alt="Heyo, my potato!"></noscript>
<script>
if (!Modernizr.svg) {
$('img[data-svg$=svg]').each(function(index, item) {
var png = $(item).attr('data-png');
$(item).attr('src', png);
});
} else {
$('img[data-svg$=svg]').each(function(index, item) {
var svg = $(item).attr('data-svg');
$(item).attr('src', svg);
});
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment