At the moment I’ve got one function to check, if a webpage is reachable. I’ll call this function at about 100 times in a while-loop, which means it sometime lasts 5 minutes to check all these 100 webpages.
I never before used ajax but I would think that it would be a good idea to solve this problem with ajax, but I never used ajax before and have no idea, how to start. Could you give me a good hint? Thanks for every answer!
At the moment I’ve got one function to check, if a webpage is reachable.
Share
I would use jquery-ajax, makes it simpler.
So put jquery on your site to start.
This is how jquery ajax works:
I hope this helps.