How to check when i have HTTP GET and it’s loading, it’s waiting for something to happen, and when it happen i want to load NEW HTTP GET, and i want every time the HTTP GET is loaded to appear new HTTP GET. How can this happen , is there some kind of listener for the get or trick ?
HERE IS SOME KIND OF EXAMPLE
$.get('url', function(data1) {
// here i want i that get with data1 is loadded, to load a new one, and every time when the get loads, i want to appera new get.
});
If you mean jQuery .get():
Recursive call:
NOTE: Since the function is invoked inside a callback function this is not the same as calling the function inside itself. This is not true recursion.