Search code examples
javascripthtmlfirefox-addon

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 ?


Solution

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