Skip to content

Instantly share code, notes, and snippets.

@ymkjp
Created November 20, 2012 03:52
Show Gist options
  • Save ymkjp/4115841 to your computer and use it in GitHub Desktop.
Save ymkjp/4115841 to your computer and use it in GitHub Desktop.
About node
var elem = document.createElement('div'),
text = document.createTextNode('Added div element.');
document.body.appendChild(elem);
elem.appendChild(text);
var comment - document.createComment('This is comment.');
document.body.insertBefore(comment, elem);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment