Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
document.body = document.createElement('body'); // This creates a new body element

We still have the head element with any styling that is present. You can see this by putting in some simple markup:

Code Block
languagejs
document.body.innerHTML = '<h1>A heading</h1><div class="BLOCKone">Block</div>';

...

We can clear that out using:

Code Block
languagejs
document.head.innerHTML = ''

One is still left with any Javascript code which is present. Haven’t thought of an easy way to clear that yet.

Here’s the lot in one easy code fragment to copy paste into the Javascript console:

Code Block
languagejs
document.body = document.createElement('body'); 
document.body.innerHTML = '<h1>A heading</h1><div class="BLOCKone">Block</div>';
document.head.innerHTML = ''