I'm trying to find a solution to the following problem:
We're using number of Tracking Pixels on our website to gather stats about our visitors. However, often some of those third party javascript that we embed in code are waiting on a response from their server. Often their server is not responding properly and therefore it causes an error messages as well as problems with timely rendering the website HTML elements, which causes huge performance issues.
Is there a way to detect when a third-party javascript doesn't return within desired time so we can somehow terminate the call to their server and proceed to the next line of code? Please note that using the JQuery.delay() is not really a solution to this problem.
Handling error messages returned from their servers we can use Try & Catch(error), but I don't know how we can force termination of a javascript call to external server.
Thanks, SS