Skip to content

Instantly share code, notes, and snippets.

@erikroyall
Last active August 29, 2015 14:06
Show Gist options
  • Save erikroyall/f05f4756c0f1515623e5 to your computer and use it in GitHub Desktop.
Save erikroyall/f05f4756c0f1515623e5 to your computer and use it in GitHub Desktop.
DOM print() function for... fun.
function print (o) {
var body = document.body
, ih = body.innerHTML;
body.innerHTML = ih ? ih + "<br/>" + o : o;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment