JavaScript Include


/ Published in: JavaScript
Save to your folder(s)

Include JavaSript files.


Copy this code and paste it in your HTML
  1. function include(arquivo){
  2. var novo = document.createElement("<script>");
  3. novo.setAttribute('type', 'text/javascript');
  4. novo.setAttribute('src', arquivo);
  5. document.getElementsByTagName('body')[0].appendChild(novo);
  6. //apos a linha acima o navegador inicia o carregamento do arquivo
  7. //portanto aguarde um pouco até o navegador baixá-lo. :)
  8. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.