Skip to content

Instantly share code, notes, and snippets.

@jonrohan
Created January 5, 2011 19:46
Show Gist options
  • Save jonrohan/766900 to your computer and use it in GitHub Desktop.
Save jonrohan/766900 to your computer and use it in GitHub Desktop.
// If we can create a SVG element, and it has the basic function of SVG
if(!!document.createElementNS
&& !!document.createElementNS('http://www.w3.org/2000/svg', "svg").createSVGRect) {
// The browser supports SVG
} else {
// The browser DOESN'T support SVG yet
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment