Skip to content

Instantly share code, notes, and snippets.

@jcypret
Last active August 29, 2015 15:30
Show Gist options
  • Save jcypret/a9b17dc0391246a54dea to your computer and use it in GitHub Desktop.
Save jcypret/a9b17dc0391246a54dea to your computer and use it in GitHub Desktop.
svg-fallback.js
if (!document.implementation.hasFeature('http://www.w3.org/TR/SVG11/feature#Image', '1.1')) {
$('img[src*="svg"]').attr('src', function () { return $(this).data('svg-fallback'); });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment