Skip to content

Instantly share code, notes, and snippets.

@pizzimenti
Created March 20, 2016 14:42
Show Gist options
  • Select an option

  • Save pizzimenti/68c37324022a21ea4e54 to your computer and use it in GitHub Desktop.

Select an option

Save pizzimenti/68c37324022a21ea4e54 to your computer and use it in GitHub Desktop.
print to DOM from JS with HTML5
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