How do you detect support for VML or SVG in a browser - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T02:34:21Z http://stackoverflow.com/feeds/question/654112 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/654112/how-do-you-detect-support-for-vml-or-svg-in-a-browser 2 How do you detect support for VML or SVG in a browser Jim T 2009-03-17T12:58:21Z 2009-04-01T17:30:28Z <p>I'm writing a bit of javascript and need to choose between SVG or VML (or both, or something else, it's a weird world). Whilst I know that for now that only IE supports VML, I'd much rather detect functionality than platform.</p> <p>SVG appears to have a few properties which you can go for: window.SVGAngle for example.</p> <p>Is this the best way to check for SVG support?</p> <p>Is there any equivalent for VML?</p> <p>Unfortuntaly - in firefox I can quite happily do all the rendering in VML without error - just nothing happens on screen. It's quite hard to detect that situation from script.</p> http://stackoverflow.com/questions/654112/how-do-you-detect-support-for-vml-or-svg-in-a-browser/654516#654516 5 Answer by Crescent Fresh for How do you detect support for VML or SVG in a browser Crescent Fresh 2009-03-17T14:38:08Z 2009-03-17T22:21:48Z <p>For VML detection, here's what <a href="http://maps.google.com/intl/en%5FALL/mapfiles/73/maps2.api/main.js" rel="nofollow">google maps does</a> (search for "<code>function Xd</code>"):</p> <pre><code>function supportsVml() { if (typeof supportsVml.supported == "undefined") { var a = document.body.appendChild(document.createElement('div')); a.innerHTML = '&lt;v:shape id="vml_flag1" adj="1" /&gt;'; var b = a.firstChild; b.style.behavior = "url(#default#VML)"; supportsVml.supported = b ? typeof b.adj == "object": true; a.parentNode.removeChild(a); } return supportsVml.supported } </code></pre> <p>I see what you mean about FF: it allows arbitrary elements to be created, including vml elements (<code>&lt;v:shape&gt;</code>). It looks like it's the test for the <a href="http://msdn.microsoft.com/en-us/library/bb250527%28VS.85%29.aspx" rel="nofollow">adjacency attribute</a> that can determine if the created element is truly interpreted as a vml object.</p> <p>For SVG detection, this works nicely:</p> <pre><code>function supportsSvg() { return document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Shape", "1.0") } </code></pre> http://stackoverflow.com/questions/654112/how-do-you-detect-support-for-vml-or-svg-in-a-browser/706590#706590 2 Answer by Mike C for How do you detect support for VML or SVG in a browser Mike C 2009-04-01T17:30:28Z 2009-04-01T17:30:28Z <p>I'd suggest one tweak to crescentfresh's answer - use </p> <pre><code>document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure", "1.1") </code></pre> <p>rather than </p> <pre><code>document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Shape", "1.0") </code></pre> <p>to detect SVG. WebKit is currently very picky about reporting features, and returns false for feature#Shape despite having relatively solid SVG support. The feature#BasicStructure alternative is suggested in the comments to <a href="https://bugs.webkit.org/show%5Fbug.cgi?id=17400" rel="nofollow">https://bugs.webkit.org/show_bug.cgi?id=17400</a> and gives me the answers I expected on Firefox/Opera/Safari/Chrome (true) and IE (false).</p> <p>Note that the implementation.hasFeature approach will ignore support via plugins, so if you want to check for e.g. the Adobe SVG Viewer plugin for IE you'll need to do that separately. I'd imagine the same is true for the RENESIS plugin, but haven't checked.</p>