Skip to content

Instantly share code, notes, and snippets.

@marcwieland95
Created May 16, 2020 10:45
Show Gist options
  • Save marcwieland95/ebcce71a4f654cf1b197d5df95808963 to your computer and use it in GitHub Desktop.
Save marcwieland95/ebcce71a4f654cf1b197d5df95808963 to your computer and use it in GitHub Desktop.
load Event Listener
function winLoad(callback) {
if (document.readyState === 'complete') {
callback();
} else {
window.addEventListener("load", callback);
}
}
winLoad(function() {
console.log('Window is loaded');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment