
There are times when you want to embed 3rd party elements into your web pages. If you have a high traffic site which has time critical output, you might come to realize that your 3rd party vendor doesn't have the same uptime as yourself, resulting in delayed GET statements that seem to bog down your site.
Here you are left with a couple of choices.
- Ditching the supplied elements all together, usually a very unpopular decision.
- Caching it - which might be a problem with licensing and time critical elements.
- Use JavaScript to fetch those elements - as explained in this article.
The goal here is to give a usable page to your visitors as quickly as possible.



