Created
December 3, 2010 11:04
-
-
Save aaronrussell/726835 to your computer and use it in GitHub Desktop.
Example of how to dynamically load and run JS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Function for adding JS to window load event | |
function myAddLoadEvent(f) { | |
var oldonload = window.onload; | |
if (typeof window.onload != 'function') { | |
window.onload = f; | |
} else { | |
window.onload = function() { | |
if (oldonload) { | |
oldonload(); | |
} | |
f(); | |
} | |
} | |
} | |
// On page load add custom JS and run myCustomInit | |
myAddLoadEvent(function() { | |
var head = document.getElementsByTagName("head")[0]; | |
var newScript = document.createElement('script'); | |
newScript.type = 'text/javascript'; | |
newScript.src = 'http://domain.com/mycustom.js'; | |
newScript.onload = myCustomInit; | |
head.appendChild(newScript); | |
}); | |
// Perform functions dependent on mycustom.js | |
function myCustomInit() { | |
// foo bar | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment