I'm trying to get some HTML code from a page. The only way to do this that I know of is
document.getElementById('id').innerHTML = 'newhtml';
But the problem is that the page is taken from the web and it has no IDs to get and I can't modify it by putting IDs.
So is there a way to get the innerHTML of the whole page so I can search for certain strings afterwards?