views:

98

answers:

1

Is there any way to generate HTML source code from live DOM tree in IE? The DOM may be modified by JavaScript, but I just want the final result.

If I want to write a BHO to do this, which event should I handle such thing?

A: 
document.documentElement.outerHTML
Sean Hogan