Skip to content

Instantly share code, notes, and snippets.

@donohoe
Forked from madrobby/gist:3201472
Created July 30, 2012 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donohoe/3206690 to your computer and use it in GitHub Desktop.
Save donohoe/3206690 to your computer and use it in GitHub Desktop.
Check if the browsers supports SVG
// A minor tweak the sake of changing
function supportsSVG(){
return !!('createElementNS' in (d = document) &&
d.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