Skip to content

Instantly share code, notes, and snippets.

@awave1
Last active June 30, 2019 02:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awave1/a69f160438d26fa98870e098b1e16243 to your computer and use it in GitHub Desktop.
Save awave1/a69f160438d26fa98870e098b1e16243 to your computer and use it in GitHub Desktop.
<body>
<button id="btn">show answers</button>
<script>
var btn = document.getElementById('btn');
var body = document.body;
btn.onclick = function (event) {
body.insertAdjacentHtml('afterend', '<p>some paragraph</p>');
};
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment