Is it possible to get the source text of the current HTML document, just like it was loaded, in text form? (i.e. not the "Generated Source" after parsing and manipulating the DOM.)
Note. Issuing an additional AJAX request to retrieve an HTML page is again not an option in this case: the document could have been modified.
Most browsers have a "view source" feature that will provide exactly what I want - so that browsers retain the original HTML content anyway. It would be nice if I could access this ...
source
share