Hi,
I'm searching a possibility to get an array of elements in E4X for an unknown tagname (like the DOMs getElementsByTagName) inside of a function.
My first thought was something like:
(function (doc, tag) {
return doc..[tag];
})
Is there any chance to do this?