I have the ID of an element. I want to retrieve all child elements and all text nodes. Is there a way to do this in MooTools?
For example, say I have this markup:
<div id="foobar">
test <img />
</div>
How can I use $('foobar') to select both text node "test" and element "img", like they're siblings?