Tagged Questions
setInterval is a method of the window object in JavaScript. It is used to execute a particular function or piece of code at regular intervals.
19
votes
3answers
3k views
How can I make setInterval also work when a tab is inactive in Chrome?
I have a setInterval running a piece of code 30 times a second. This works great, however when I select another tab (so that the tab with my code becomes inactive), the setInterval is set to an idle ...
11
votes
4answers
541 views
Does the browser keep track of active timer IDs?
Does the browser keep track of active setInterval and setTimeout IDs? Or is this solely up to the developer to keep track of?
If it does keep track of them, is it accessible via the BOM?
9
votes
1answer
254 views
Pausing setInterval when page/ browser is out of focus
I have a simple slideshow that I've made on a client's homepage, using setInterval to time the rotations.
To prevent browsers from screwing up setInterval when the page isn't in focus (another tab is ...
9
votes
5answers
331 views
Is setInterval CPU intensive?
I read somewhere that setInterval is CPU intensive. I created a script that uses setInterval and monitored the CPU usage but didn't notice a change. I want to know if there is something I missed.
...
9
votes
4answers
4k views
Changing the interval of SetInterval while it's running
I have written a javascript function that uses setInterval to manipulate a string every tenth of a second for a certain number of iterations.
function timer() {
var section = ...
8
votes
3answers
594 views
How do I make Ajax calls at intervals without overlap?
I'm looking to setup a web page that samples data via AJAX calls from an embedded web-server. How would I set up the code so that one request doesn't overlap another?
I should mention I have very ...
7
votes
5answers
5k views
setInterval/setTimeout return value
Two questions:
How is the value returned from setInterval and setTimeout (the ones used to clear the timers) calculated?
Is it possible for both the functions to return the same value during ...
6
votes
5answers
501 views
Are all mouse draggable objects in HTML5 canvas based on setInterval?
I am making a geometrical optics demo in HTML5 canvas, the mouse points the light source, you can craft some barriers, javascript do the calculation work and display light and shadow on on a line ...
6
votes
1answer
5k views
Jquery/Ajax call with timer
I was wondering if someone could help me out. I have a php page that echos out rows from a database. I want to call it via jquery/ajax every 30 seconds. But I also want to be able to call the page at ...
6
votes
2answers
263 views
Why do people say that javascript eval() is evil but you get no objections against setTimeout and setInterval etc?
if I am not mistaken eval executes valid code in a given string
eval("alert('hey')");
and
setTimeout("alert('hey')",1000);
does just about the same thing, only with a timer. is set timeout ...
6
votes
2answers
999 views
Problem with IE and setInterval() not refreshing/updating
I'm using JavaScript/Jquery to make a page auto-update with a value from a database, although it doesn't seem to update in Internet Explorer. It works fine in FireFox & Chrome. Can anyone explain ...
5
votes
5answers
1k views
Jquery setInterval too fast when coming from another tab
I've got a site with endlessly sliding images using jquery's setIntervall() function.
When calling the page in Chrome 13 and I switch to another tab to come back a few seconds later the image sliding ...
5
votes
1answer
155 views
Average number of intervals from an input in 0..N
The question sprang up when examining the "Find the K missing numbers in this set supposed to cover [0..N]" question.
The author of the question asked for CS answers instead of equation-based ...
5
votes
3answers
1k views
IE8 setInterval and setTimeout fires immediately after 49 days of uptime
As a Windows system nears 49.7 days of uptime, the internal Windows millisecond tick counter approaches 2^32.
A bug in Internet Explorer 8 seems to have an arithmetic overflow when calculating when to ...
5
votes
2answers
571 views
Will setInterval drift?
This is a pretty simple question really. If I use setInterval(something, 1000), can I be completely sure that after, say, 31 days it will have triggered "something" exactly 60*60*24*31 times? Or is ...
5
votes
2answers
407 views
Viewing all the timouts/intervals in javascript?
I'm writing an application that utilizes Javascript timouts and intervals to update the page, is there a way to see how many intervals are setup? I want to make sure that I'm not accidentally going to ...
4
votes
2answers
61 views
Is there a more efficient way of displaying unread message number in page title?
Currently I use this...
setInterval(function() {
$.ajax({
url: 'data.php',
success: function(data) { document.title = data;},
dataType: 'text'
});
}, 15000);
But it ...
4
votes
5answers
141 views
Auto Refresh document title?
I have tried many ways to have the page title automatically update every 3 seconds so the title can display how many unread messages they have.
Here is what I have tried:
setInterval(function() {
...
4
votes
3answers
480 views
setInterval not working properly on Chrome
I have a custom made slideshow object to perform the usual stuff the name indicates on a website. It all works well except when I switch tabs in Chrome and come back to the website tab. When that ...
4
votes
2answers
385 views
workaround for FF5 and chrome setInterval(), setTimeout() in inactive tab
There is js optimalization causing inactive tabs to slow down setInterval() and setTimeout() in ff5 and chrome. I have it set for 66 miliseconds but it goes up to 1000 whne tab is inactive.
There is ...
4
votes
2answers
326 views
jquery: slideshow, when you're in another browser tab for a bit, then go back to the tab with the slideshow, it flips out
http://jsfiddle.net/nicktheandroid/B7Rhe/8/
In Chrome, when a browser tab is inactive, chrome slows any setInterval to only happen every second, even though my slideshow is once every two seconds, ...
4
votes
5answers
348 views
Make sure a specific setInterval function instance is running only once
I'm working on a div (parent) that has two other divs (menu and content) as follow:
<div id="parent">
<div id="menu"></div>
<div id="content"></div>
</div>
...
4
votes
2answers
317 views
Equivalent of setInterval in python
I have recently posted a question about how to postpone execution of a function in Python (kind of equivalent to Javascript setTimeout) and it turns out to be a simple task using threading.Timer ...
4
votes
1answer
792 views
Using setTimeout to bypass IE script warning
I'm trying to write a web app that uses Javascript to perform a fairly complex calculation (involves factorials and Bessel functions). When I run the script in IE, it gives me a warning that the ...
4
votes
1answer
489 views
how to settimeout in flex 4?
what is the setTimeout function in Flex 4?
I tried the old methods like setTimeout () or setInterval but not working, not found any web references as well, anyone know? Thank you all
4
votes
2answers
546 views
Problems with multiple setIntervals running simultaneously
My first post here. I want to make a horizontal menu with submenu's sliding down on mouseover. I know I could use jQuery but this is to practice my javascript skills.
I use the following code:
var ...
4
votes
4answers
7k views
how can i stop setInterval
how can i stop and start setInterval on focus and blur.....!!
suppose i have a textarea i want to stop setInvterval on textarea focus and restart setInvterval on textarea blur with jquery
4
votes
2answers
4k views
Checking whether clearInterval has been called?
Given this code:
bob = setInterval(function, 1000);
clearInterval(bob);
Is there now a way to know if that interval has been cleared?
Currently, I keep track of this myself, by unsetting 'bob', ...
4
votes
1answer
1k views
Why does my setTimeout speed up when I have multiple tabs open to my site?
I have a timer that counts down every second. It works great until the user opens up 3 or 4 tabs of the my site, at which point the newest tab's timer goes double or triple speed. I can currently ...
3
votes
4answers
63 views
Is it safe to pass setInterval or setTimeout a fractional delay?
I know that the difference would currently be negligible due to inaccurate browser timers, but for the sake of knowledge if nothing else: is there any browser that supports setInterval and setTimeout, ...
3
votes
2answers
45 views
jquery optimize looped animate function
I'm needing to find a more efficient way of accomplishing this outcome:
http://jsfiddle.net/H4sjf/1/
The setInterval() mixed with the .each() and subsequent .animate() makes this script considerably ...
3
votes
1answer
87 views
Why does Twitter redefine window.setTimeout and window.setInterval?
I was studying the Twitter source code, and I came across the following snippet:
window.setTimeout=window.setTimeout;window.setInterval=window.setInterval;
Why does Twitter redefine these ...
3
votes
2answers
60 views
setInterval() within for .. in loop
long time reader, first time poster.
I'm trying to run multiple timers given a variable list of items. The code looks something like this:
var list = Array(...);
for(var x in list){
...
3
votes
5answers
174 views
How to clearInterval with unknown ID?
Say someone (evil) has set us a timer with setInterval, but we don't know its ID (we don't have the reference to the object, that setInterval is returning, nor its value)
(function(){
...
3
votes
3answers
207 views
Using setInterval/clearInterval effectively
I am adding new features to my already developed application. I am trying to add an auto rendering functionality which automatically render some part of the screen after a certain time interval. I am ...
3
votes
3answers
150 views
Javascript this object inside intervals/timeouts
I have a method that is a big setInterval statement, and it needs access to the this object of the object that owns the method from inside the interval. I implemented a simple closure, but it doesn't ...
3
votes
3answers
186 views
JQuery & Timer :: Updating the text of a hyperlink from a webservice
What I'm to figure out how to do is execute a webservice on a remote server to determine how many messages there are available to read and populate the text of a hyperlink with the message count. The ...
3
votes
1answer
306 views
setInterval with (this)
Please, someone can explain me what is the meaning of (this) at the end of the function in a setInterval :
function Klass(name) {
this.name = name;
this.handle = null;
...
3
votes
4answers
1k views
Function not defined in setInterval
Hallo, I've got something like this:
$(document).ready(function(){
$("#all").height($(window).height()-60);
$('a').bind({
mouseover:function(){
$(this).stop().animate({opacity:0.8},500);
...
3
votes
2answers
620 views
HTML5 + Jscript with JQuery, setInterval problem
Please can someone tell me why this isn't working before I defenestrate everything on my desk.
I have the following html document:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
3
votes
1answer
282 views
Attention JavaScript gurus: Need a hand with setInterval()
I am trying to make a non interactive display for a real estate shop window.
It's been a while since I've played with setInterval().
The first time my script steps through, it is fine. But when it ...
3
votes
4answers
933 views
Javascript setInterval and `this` solution
I need to access this from my setInterval handler
prefs: null,
startup : function()
{
// init prefs
...
this.retrieve_rate();
this.intervalID = ...
3
votes
2answers
116 views
Weird random value as default interval handler parameter
Just came across this. It's not affecting anything really but i'm wondering why it's happening.
If I run the following code in firefox with firebug on:
setInterval(function(param)
{
...
3
votes
1answer
389 views
setInterval and long running functions
How does setInterval handle callback functions that take longer than the desired interval?
I've read that the callback may receive the number of milliseconds late as its first argument, but I was ...
3
votes
1answer
13k views
javascript/jQuery setInterval/clearInterval
i'm using setInterval to check if a p(html paragraph) has a certain text value. if it has it i want to clear interval an continue code flow. i'm using this in a jQuery plugin so if the paragraph has ...
3
votes
3answers
2k views
How to pass an Array object to the setInterval function
I want to pass an object array to the setTimer function in Javascript.
setTimer("foo(object_array)",1000);
am getting error on this code.
Note:Sorry ! some correction in my question : Is it ...
3
votes
4answers
3k views
jQuery randomly fadeIn images
I have a container with a lot of small images.
<div id="container">
<img src="1.jpg" />
<img src="2.jpg" />
<img src="3.jpg" />
...
<img src="100.jpg" />
...
3
votes
3answers
4k views
How can I clearInterval() for all setInterval()?
I've got a setInterval() called in a jQuery plugin, but I want to clear it from my main page, where I don't have access to the variable that the setInterval was stored in.
Is there a way to clear all ...
2
votes
3answers
42 views
Calling Javascript anonymous function method on timer
I'm working on creating a fireworks show in javascript for my last day of work tomorrow and I'm having some trouble getting it to automate. I'm using the fireworks found here and it works great, but ...
2
votes
2answers
54 views
Isn't JavaScript setTimeout and setInterval have some potential security vulnerability
Well it's not some huge security risk, though it reveals some potential interference at least.
Suppose we have those very well closed JavaScript modules that is loaded into my page without knowing ...