I'm displaying a set of images as an overlay using googlemaps. Displaying these images should be in an endless-loop. Most most browsers detect this, and display a warning. Is there a way to make a endless-loop in javascript that is'nt stopped by the browser?
|
|
Try setInterval or setTimeout EDIT: Like in this simple example: http://n0p.com/so/63011.php |
|||
|
|
|
|
You should use a timer to continuously bring new images instead of an infinite loop. Check the setTimeout() function. The caveat is that you should call it in a function that calls itself, for it to wait again. Example taken from w3schools
|
||
|
|
|
Instead of using an infinite loop, make a timer that keeps firing every n seconds - you'll get the 'run forever' aspect without the browser hang. |
||
|
|
|
|
The following code will set an interval and set the image to the next image from an array of image sources every second.
|
||
|
|
|
|
An endless loop? You are displaying an infinite number of images? |
||
|
|
|
|
Perhaps try using a timer which retrieves the next image each time it ticks, unfortunately i don't know any JavaScript so I can't provide a code sample |
||
|
|
|
|
function foo() { alert('hi'); setTimeout(foo, 5000); } Then just use an action like "onload" to kick off 'foo' |
||
|
|
|
|
If it fits your case, you can keep loading new images to respond to user interaction, like this website does (just scroll down). |
||
|
|
|
|
Just a formal answer:
I think no browser would detect such things. |
||
|
|
|
|
Thevs, browsers will prompt you if any operation is taking too long. Your loop is not an exclusion. The only way is to use setInterval/setTimeout (as it has been already noted). |
||
|
|
