Question
How to Script run another one over the internet ?
Can someone help me?
I'm trying to make a script run another one over the internet ... Would that be possible?
I've created this so far =
function init() {
var script = document.createElement('script');
script.type = 'text/javascript';
document.body.appendChild(script);
var scriptToLoad = new File ('script.src')
}
