Skip to content

Instantly share code, notes, and snippets.

@fredericAerts
Last active August 29, 2015 14:24
Show Gist options
  • Select an option

  • Save fredericAerts/c94177538a49a64e3641 to your computer and use it in GitHub Desktop.

Select an option

Save fredericAerts/c94177538a49a64e3641 to your computer and use it in GitHub Desktop.
var paragraphElement = window.document.createElement("p");
var paragraphText = window.document.createTextNode("This paragraph was created by JavaScript");
paragraphElement.appendChild(paragraphText);
window.document.addEventListener('DOMContentLoaded', function() {
window.document.querySelector('body').appendChild(paragraphElement);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment