--- In [email protected], "Ian Tindale" <[EMAIL PROTECTED]> wrote: > > What methods (perhaps even reliable methods) are favoured for on-the-fly > 'detecting' support of SVG either in part or whole?
I prefer, where possible to use the HTML <object> element with HTML fallback for browsers that doesn't support SVG (older browsers and IE). See menu.svgz on my site for an example (http://blog.codedread.com/) > > By 'in part' I imply within the first two options above: can we usefully or > reliably test on an individual 'element' basis whether we're going to get > expected results or not, for such things as smil anim, effects, xlink, and > so on. Yes. Declaratively, you can do this with the switch element and test attributes (requiredFeatures). See Erik's reply for links to the spec. Procedurally, you can do this with the hasFeature DOM method that David mentioned in his email or you can test that individual DOM attributes/methods exist (not all implementations have covered 100% of the SVG DOM yet). Regards, Jeff Schiller ------------------------------------ ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ----Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/svg-developers/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

