Skip to content

Instantly share code, notes, and snippets.

@hc2p
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hc2p/a611639da5e83e969cf9 to your computer and use it in GitHub Desktop.
Save hc2p/a611639da5e83e969cf9 to your computer and use it in GitHub Desktop.
log to dom
var log = function(text) {
var el = document.createElement('p');
el.innerHTML = text;
var body = document.getElementsByTagName('body')[0];
body.appendChild(el);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment