Skip to content

Instantly share code, notes, and snippets.

@6eDesign
Created April 19, 2014 16:07
Show Gist options
  • Save 6eDesign/11088849 to your computer and use it in GitHub Desktop.
Save 6eDesign/11088849 to your computer and use it in GitHub Desktop.
addloadevent
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
oldonload();
func();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment