views:

49

answers:

1

Hi there... suppose I have a mootools Element and I want to get a list of all it's descendants (not only direct children)... how can I do this?

Thanks!

+2  A: 

Getting all childs using * css Selector:

myElement.getElements('*')
eskimoblood