How to send Ajax request on every 1s using JQuery ?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You probably don't want to send a request every second as David already noted. Therefore, using Instead consider doing something like this:
|
|||
|
|
|
you can use setInterval, but setInterval ist not part of jQuery:
|
|||
|
|
Obviously in the function myAjaxCall() you will do all you ajax stuffs with jquery. |
|||||
|
|
|
The interval 1 sec is small enough and it can be that you will start the second request before you receive response to the first request. So you should either start the next request after receiving of the previous one (see the suggestion of Martin Jespersen) or save |
|||
|
|