How can I do a foreach(File file in Directory) kind of thing in jQuery.
Thank you!
$('selector').each(function(idx, elm){ //some code });
Will allow you to iterate over a list, applying the same function to each. However, accessing the filesystem is not possible.