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

7 lines
186 B
JavaScript
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
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);