RosettaCodeData/Task/Include-a-file/JavaScript/include-a-file-1.js
2023-07-01 13:44:08 -04:00

6 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);