Skip to content

Instantly share code, notes, and snippets.

@eiszfuchs
Created October 30, 2013 13:08
Show Gist options
  • Save eiszfuchs/7232396 to your computer and use it in GitHub Desktop.
Save eiszfuchs/7232396 to your computer and use it in GitHub Desktop.
function appendToOnload (callback) {
if (typeof window.onload !== "function") {
window.onload = callback;
return;
}
var formerCallback = window.onload;
window.onload = function () {
formerCallback();
callback();
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment