/ Published in: JavaScript
Include JavaSript files.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function include(arquivo){ var novo = document.createElement("<script>"); novo.setAttribute('type', 'text/javascript'); novo.setAttribute('src', arquivo); document.getElementsByTagName('body')[0].appendChild(novo); //apos a linha acima o navegador inicia o carregamento do arquivo //portanto aguarde um pouco até o navegador baixá-lo. :) }