home *** CD-ROM | disk | FTP | other *** search
/ lib.nur.ac.rw / lib.nur.ac.rw.tar / lib.nur.ac.rw / Scripts / master.js < prev    next >
Text File  |  2008-07-16  |  382b  |  14 lines

  1. //this function includes all necessary js files for the application
  2. function include(file) {
  3.   var script  = document.createElement('script');
  4.   script.src  = file;
  5.   script.type = 'text/javascript';
  6.   script.defer = true;
  7.  
  8.   document.getElementsByTagName('head').item(0).appendChild(script);
  9.  
  10. }
  11.  
  12. /* include any js files here */
  13. include('/Scripts/scroller_script.js');
  14.