最后修改的文件-循环

I have the following webpage that pulls in the "last-modified" date of each file loaded:

http://f150.atwebpages.com/list.html

Now, do you see how it loads the dates 1 by 1 as it makes the calls to the header? If it didn't do it for you, hit F5 to reload the page.

Is there any way to call a global function, ajax/jquery call or something that sends all of the requests at once so it doesn't cause the page to load slowly?

(some of my pages have around 300 documents on them)

Thanks!

No there are limits in how many requests you can do at once, and it doesn't make sense to have such an implementation that requires you to hammer the web server.

Instead make a handler on the backend using your favorite language where you can request a list of dates in one request