Skip to content

Instantly share code, notes, and snippets.

@wwwjsw
Created March 22, 2017 18:12
Show Gist options
  • Select an option

  • Save wwwjsw/db2268089a7378ef52541aa2828781cd to your computer and use it in GitHub Desktop.

Select an option

Save wwwjsw/db2268089a7378ef52541aa2828781cd to your computer and use it in GitHub Desktop.
window.onload = function() {
var heading = document.createElement("h1");
var heading_text = document.createTextNode("Big Head!");
heading.appendChild(heading_text);
document.body.appendChild(heading);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment