i'm creating a firefox extension and i want to get the html page elements

using java script but the document.getElementsByTagName('*') always give me

an xul objects array

how can i get the html objects array ?

link|improve this question

70% accept rate
For clarification: do you want to get references to all the documents on all currently-open pages (tabs, I guess)? – Pointy Feb 6 '11 at 14:28
i want all the html elements in the current page as an array – M.B.Asfoor Feb 6 '11 at 14:29
feedback

1 Answer

up vote 2 down vote accepted

If you want to access the current tab's content from an extension then you need to use content.document.getElementsByTagName('*') etc.

link|improve this answer
Right. document is the browser document and content.document is the webpage – MatrixFrog Feb 6 '11 at 21:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.