Skip to content

Instantly share code, notes, and snippets.

@fredericAerts
Created July 7, 2015 15:50
Show Gist options
  • Select an option

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

Select an option

Save fredericAerts/b1f15a19c258320fe66c to your computer and use it in GitHub Desktop.
web developer in 5 days - v1
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