Skip to content

Instantly share code, notes, and snippets.

@ibare
Last active August 29, 2015 14:16
Show Gist options
  • Save ibare/5da074df03b737bc6add to your computer and use it in GitHub Desktop.
Save ibare/5da074df03b737bc6add to your computer and use it in GitHub Desktop.
HTML 의 Body 에 로그를 남기기
function show(msg, containerTag) {
var containerTag = containerTag || 'div';
var bodyElement = document.getElementsByTagName('body')[0];
var containerElement = document.createElement(containerTag);
var textNode = document.createTextNode(msg);
containerElement.appendChild(textNode);
bodyElement.appendChild(containerElement);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment