Is there a way to perform an AJAX GET on a page and retrieve the final version of the HTML on that page after all of its own scripts have finished adjusting its contents?
Right now if I perform a GET on a page with scripts that are adding to the HTML, it'll give me the full HTML as it was before that extra content was added.
So if there's a javascript generating a specific table on that page, it wouldn't be returned by the GET. Because it didn't exist before that page's scripts generated it.
How can you get()
the finished product of a page's HTML, after anything on that page altered it?