Skip to content

Instantly share code, notes, and snippets.

@gideondsouza
Created February 20, 2015 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gideondsouza/924690331b786c302091 to your computer and use it in GitHub Desktop.
Save gideondsouza/924690331b786c302091 to your computer and use it in GitHub Desktop.
Javascript Basic code
window.$uj = function(fn)
{
if (window.addEventListener)
window.addEventListener("load", fn, false);
else if (window.attachEvent) {
window.attachEvent("onload", fn);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment