Skip to content

Instantly share code, notes, and snippets.

@krillo
Created November 8, 2018 13:28
Show Gist options
  • Save krillo/6caa123128f560e4889777f400e04034 to your computer and use it in GitHub Desktop.
Save krillo/6caa123128f560e4889777f400e04034 to your computer and use it in GitHub Desktop.
wait for page to load - vanilla js
<!-- add a function to the event listener of page loded -->
<script>
window.addEventListener("load", function() {
console.log('krillo');
$('#motivation').keypress(function (e) {
console.log('krillo');
}
);
}, true);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment