Skip to content
Advertisement

how can send ajax call with looping id number parameter in url

i want send ajax call with loop parameter named [id] in url starts request.php?id=1 ends id=9 and send every call after 3 second . I’m a beginner in the JavaScript, I don’t know where to start the idea, this is my code:

JavaScript

Advertisement

Answer

First, make the id into a variable let id = 1;. Then you can use the JavaScript setInterval (https://developer.mozilla.org/en-US/docs/Web/API/setInterval) function to make a function-call every x seconds.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement