document.addEventListener('DOMContentLoaded', function (e) {
console.log('HTML parsed and DOM tree built!', e);
});
window.addEventListener('load', function (e) {
console.log('Page fully loaded', e);
});
window.addEventListener('beforeunload', function (e) {
e.preventDefault();
console.log(e);
e.returnValue = ''; // only default generic message in modern browser to prevent abuse
});
Last active
July 26, 2023 12:27
-
-
Save vxhviet/a525c38524a24dbbe4c385405fa1336c to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment