Skip to content

Instantly share code, notes, and snippets.

@tanepiper
Created May 10, 2012 10:19
Show Gist options
  • Select an option

  • Save tanepiper/2652303 to your computer and use it in GitHub Desktop.

Select an option

Save tanepiper/2652303 to your computer and use it in GitHub Desktop.
SVG fallback
// Make SVG Play nice with bad browsers
$(document).ready(function() {
if (Modernizr.inlinesvg) {
//SVG.
$('#logo').html('<img src="/assets/img/logo.svg" alt="Crafty Devil" />');
} else {
//No SVG.
$('#logo').html('<img src="/assets/img/logo.png" alt="Your Company" />');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment