Skip to content

Instantly share code, notes, and snippets.

@erikvold
Created November 21, 2013 23:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save erikvold/7591510 to your computer and use it in GitHub Desktop.
Save erikvold/7591510 to your computer and use it in GitHub Desktop.
<html>
<body>
<button id="testB">click me!!</button>
<script>
var s = document.readyState;
document.getElementById('testB').addEventListener("click", function(event) {
alert(s);
}, false);
document.addEventListener("DOMContentLoaded", function(event) {
alert(s);
}, false);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment