Skip to content

Instantly share code, notes, and snippets.

@brettjonesdev
Created January 9, 2015 00:19
Show Gist options
  • Save brettjonesdev/8d23f24b43dcf8fe570f to your computer and use it in GitHub Desktop.
Save brettjonesdev/8d23f24b43dcf8fe570f to your computer and use it in GitHub Desktop.
<script type="text/javascript">
(function() {
function customScript() {
/* Your custom code */
}
if (window.addEventListener) {
window.addEventListener("load",customScript,false);
} else if (window.attachEvent) {
window.attachEvent("onload",customScript);
}
})()
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment