11
document.createElement ("script") sincrónicamente
¿Es posible llamar a un .jsarchivo sincrónicamente y luego usarlo inmediatamente después? <script type="text/javascript"> var head = document.getElementsByTagName('head').item(0); var script = document.createElement('script'); script.setAttribute('type', 'text/javascript'); script.setAttribute('src', 'http://mysite/my.js'); head.appendChild(script); myFunction(); // Fails because it hasn't loaded from my.js yet. window.onload = function() { // Works most of the time but not all …