How to parse HTML from JavaScript in Firefox?

Posted by hmp on Stack Overflow See other posts from Stack Overflow or by hmp
Published on 2009-05-20T16:14:34Z Indexed on 2010/06/02 15:13 UTC
Read the original article Hit count: 191

Filed under:
|
|
|

What is the best way to parse (get a DOM tree of) a HTML result of XmlHttpRequest in Firefox?

EDIT:

I do not have the DOM tree, I want to acquire it.

XmlHttpRequest's "responseXML" works only when the result is actual XML, so I have only responseText to work with.

The innerHTML hack doesn't seem to work with a complete HTML document (in <html></html>). - turns out it works fine.

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about AJAX