Created
March 20, 2016 14:42
-
-
Save pizzimenti/68c37324022a21ea4e54 to your computer and use it in GitHub Desktop.
print to DOM from JS with HTML5
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
| function print(message) { | |
| var outputDiv = document.getElementById('output'); | |
| outputDiv.innerHTML = message; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment