Skip to content

Instantly share code, notes, and snippets.

@yoko
Created September 10, 2010 09:14
Show Gist options
  • Save yoko/573355 to your computer and use it in GitHub Desktop.
Save yoko/573355 to your computer and use it in GitHub Desktop.
var supported_inline_svg = function() {
var div = document.createElement('div');
div.innerHTML = '<svg version="1.1" xmlns="http://www.w3.org/2000/svg"></svg>';
return (div.childNodes[0].namespaceURI == 'http://www.w3.org/2000/svg');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment