This is another small follow up to Common Mistakes: XML Namespaces and E4X: sometimes you may wish to completely ignore the namespace information, rather than explicitly traverse it. Consider the following example:
var xml: XML = <root xmlns:space="http://www.something.com">
<space:tag>
<node>Hello, world!</node>
</space:tag>
</root>;
It is possible to reference node containing Hello, world! using the following: