Skip to content

Instantly share code, notes, and snippets.

@appins
Last active October 24, 2015 02:14
Show Gist options
  • Save appins/26ac91081de93333fa65 to your computer and use it in GitHub Desktop.
Save appins/26ac91081de93333fa65 to your computer and use it in GitHub Desktop.
creates a button
a ->
newBtn = document.createElement "button"
newBtn.id = "myBtn"
newBtn.class = "Btn"
newBtn.innerHTML = "click this button"
newBtn.onclick = "alert(\"Hello\")"
document.body.appendChild newBtn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment