I have called a javascript function on<body onload>event where there is a while loop which will iterate unless and until the desired response is fetched from a php page.
However since the loop will make a very frequent set of requests, that is causing my browser to hang
isn't there another easy way where we can perform ajax function request evry 15 minutes without causing much load on the browser?
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.
|
|
||||
|
|
|
use setInterval that calls your function every 15 min. something like this:
Here is link to setInterval documentation: http://www.w3schools.com/jsref/met_win_setinterval.asp |
||||
|
You could use a jquery plugin for polling. |
|||
|
|
to clear it use
|
|||
|
|
|
Weel i think you can use setTimeout() like this
inside your loop so that the function is executed only when the timeout ends. P.S. i think ajax was born to be "responsive", you should refresh things responding to an action of the user and not with a timeout in my opinion! :) |
|||||||||||
|