Skip to content

Instantly share code, notes, and snippets.

@Lendar
Created August 24, 2012 20:18
Show Gist options
  • Save Lendar/3455208 to your computer and use it in GitHub Desktop.
Save Lendar/3455208 to your computer and use it in GitHub Desktop.
patching HTML page with something else
var alien = document.createElement('html');
alien.innerHTML = '<html><head><title>The Page</title></head><body><h1>hi!</h1></body></html>';
document.head.innerHTML = alien.getElementsByTagName('head')[0].innerHTML;
document.body.innerHTML = alien.getElementsByTagName('body')[0].innerHTML;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment