I am trying to implement parallel(funcList, done) to implement the call to each of the functions passed at the same time.
parallel([
function(cb) { setTimeout(1000, cb); },
function(cb) { setTimeout(2000, cb); },
function(cb) { $.get('example.com').always(cb); }
],
function() { alert('done'); }
);
Any pointers would be a great help..