Skip to content

Instantly share code, notes, and snippets.

@sandywu
Forked from madrobby/gist:3201472
Created July 30, 2012 14:45
Show Gist options
  • Save sandywu/3207479 to your computer and use it in GitHub Desktop.
Save sandywu/3207479 to your computer and use it in GitHub Desktop.
Check if the browsers supports SVG
// comments welcome, there may be better ways to do this!
function supportsSVG(){
return !!('createElementNS' in document &&
document.createElementNS('http://www.w3.org/2000/svg','svg').createSVGRect)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment