Imagine a scenario where a page originating from A needs to make a GET request to a page originating from B, which in turn needs to make a GET request to a page originating from C. The goal is to retrieve the result from C to B and from B to A using callback functions. Is this kind of setup achievable?
Can these cross-origin GET requests be successfully made?