Created
August 11, 2010 17:57
-
-
Save silentrob/519406 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Fails | |
main = document.getElementById("main"); | |
var div = document.createElement('DIV'); | |
div.innerHTML = "<body>This is BODY2</body>"; | |
main.appendChild(div); | |
// Works | |
main = document.getElementById("main"); | |
var div = document.createElement('DIV'); | |
var body = document.createElement('BODY'); | |
div.appendChild(body); | |
main.appendChild(div); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment