get the document html elements in firefox addon
I'm creating a firefox extension and I want to get the HTML page elements
using javascript but the document.getElementsByTagName('*')
is always giving me an xul objects array.
How can开发者_开发技巧 I get the HTML objects array ?
If you want to access the current tab's content from an extension then you need to use content.document.getElementsByTagName('*')
etc.
精彩评论