How to send Ajax request on every 1s using JQuery ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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 |
|||
|
|