Skip to content

Instantly share code, notes, and snippets.

@Chrissy
Created February 15, 2012 22:58
Show Gist options
  • Save Chrissy/1839819 to your computer and use it in GitHub Desktop.
Save Chrissy/1839819 to your computer and use it in GitHub Desktop.
function svgWarning() {
// SVG test taken from Modernizr 2.0
if (!!document.createElementNS &&
!!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect)
return;
// No SVG, do something about it.
document.getElementById('mywarningdiv').style.display = 'block'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment