RosettaCodeData/Task/Include-a-file/JavaScript/include-a-file-1.js

7 lines
186 B
JavaScript

var s = document.createElement('script');
s.type = 'application/javascript';
// path to the desired file
s.src = 'http://code.jquery.com/jquery-1.6.2.js';
document.body.appendChild(s);