Last active
October 26, 2016 23:38
-
-
Save notriddle/dc71fb8609c8ef495db0bde21309529d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<h1>Hi!</h1> | |
<script> | |
var body2 = document.createElement("body"); | |
body2.innerHTML = "<h1>Bye!</h1>"; | |
document.getElementsByTagName("html")[0].appendChild(body2); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment