I'm currently working with Javascript Rhino and E4X.
Is there a difference between using elements() and children() besides the possibility to use an additional argument in the elements method to get only elements with that name.
Example:
new XML(<x><a><q/></a><b/><c/></x>).children();
new XML(<x><a><q/></a><b/><c/></x>).elements();
Kind regards,
Aeonnex
As Jaromanda X pointed out:
So in the following example there is a difference between the elements() and children() method: