Subj : Re: Connecting E4X with DOM document object? To : Kresimir Cunko From : Brendan Eich Date : Thu Sep 15 2005 12:26 pm Kresimir Cunko wrote: > Can anyone give me a hint how to connect E4X functionality of SpiderMonkey > (C++) with DOM document object? I have to make following evaluation working: > > var x= sometext > > Eval: x.documentElement.getElementsByTagName("element2").item(0).data Per ECMA-357, you need to call x.domNode() to get the DOM object. This is not yet implemented in SpiderMonkey; it looks like it won't make Firefox 1.5 (based on the Mozilla 1.8 milestone). /be .