Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. function getScripts(arr) {
  2.         for(var i=9; i<arr.length; i++) {
  3.                         $.getScript(arr[i], function() {
  4.                                 console.log(arr[i] + " loaded.");
  5.                                 });
  6.                         }
  7.                 }
  8.                
  9. function loadMeSomeScripts() {
  10.         var scripts = ["scripts/iscroll.js"];
  11.         getScripts(scripts);
  12.         }