Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
5answers
12k views

How can I pass a parameter to a setTimeout() callback?

I have some JavaScript code that looks like: function statechangedPostQuestion() { //alert("statechangedPostQuestion"); if (xmlhttp.readyState==4) { var topicId = xmlhttp.responseText; ...
23
votes
3answers
55k views

JQuery, setTimeout not working

I'm still new to JQuery, on the way to getting my ajax example to work i got stalled with setTimeout. I have broken it down to to where it should add "." to the div every second. The relevant code ...
17
votes
5answers
723 views

JavaScript setTimeout and changes to system time cause problems

I've noticed that if I set the setTimeout for 1 minute in the future, and then change my system time to 5 minutes in the past, the setTimeout function will trigger in 6 minutes. I did this is because ...
15
votes
3answers
590 views

Does Node.js enforce a minimum delay for setTimeout?

In browsers, if you use setTimeout from within a function called by setTimeout then a minimum delay of 4ms will be enforced. Mozilla's developer wiki describes this behaviour, and mentions that it has ...
14
votes
2answers
1k views

js: understanding how alert() impacts browser event loop

I'm considering adding an alert() to our javascript utility assert function. We're an ajax-heavy application, and the way our framework (Ext) implements ajax by polling for the ajax response with ...
14
votes
5answers
13k views

jQuery - How to tell .hover() to wait?

just a short qustion .. I have a drop down menu. Now when it's slided down to multiple levels, I'd like it to add wait time for like 2 secs, before it disapears, so the user can get back in, when he ...
11
votes
3answers
2k views

how to write setTimeout with params by Coffeescript

Please tell me how to write javascript below in coffeescript. setTimeout(function(){ something(param); }, 1000);
11
votes
3answers
1k views

Can I see if a timer is still running?

Simple question here that I can't seem to find an answer for: Once a setTimeout is set, is there any way to see if it's still, well, set? if (!Timer) { Timer = setTimeout(DoThis,60000); } From ...
11
votes
4answers
540 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
2answers
2k views

Pass correct “this” context to setTimeout callback?

How do I pass context into setTimeout? I want to call this.tip.destroy() if this.options.destroyOnHide after 1000 ms. How can I do that? if (this.options.destroyOnHide) { ...
8
votes
3answers
251 views

What happens to setTimeout when the computer goes to sleep?

In a modern web browser, suppose I do a setTimeout for 10 minutes (at 12:00), and 5 minutes later put the computer to sleep, what should happen when the system wakes up again? What happens if it wakes ...
8
votes
3answers
477 views

Is setTimeout with no delay the same as executing the function instantly?

I am looking at some existing code in a web application. I saw this: window.setTimeout(function () { ... }) Is this the same as just executing the function content right away?
8
votes
5answers
597 views

JavaScript getTimeout?

The window.setTimeout (and related setInterval) function in Javascript allows you to schedule a function to be executed sometime in the future: id = setTimeout(function, delay); where "delay" is ...
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
3answers
1k views

What is the equivalent to a JavaScript setInterval/setTimeout in Android/Java?

Can anyone tell me if an equivalent for setInterval/setTimeout exists for android? Does anybody have any example about how to do it? Thanks in advance!
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
2answers
247 views

How much to subdivide long running function for responsive UI?

I have a fairly long running (3 to 10 second) function that loads data in the background for a fairly infrequently used part of the page. The question I have is what is the optimal running time per ...
6
votes
1answer
3k views

Weird problem with setTimeout() on Google Chrome

I searched here and found a quick solution to call an action when the user is idle on the page. It basically works well on all browsers. But when I use an alert or a confirm dialog on the page, the ...
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
3answers
2k views

Javascript: find the time left in a setTimeout()?

I'm writing some Javascript that interacts with library code that I don't own, and can't (reasonably) change. It creates Javascript timeouts used for showing the next question in a series of ...
5
votes
2answers
507 views

Useless setTimeout call (missing quotes around argument?)

I have this sniplet of code in jQuery $element.parent().children().last().hide().show('slide', {direction : 'left'}, 700, function () { $element.delay(2000, function() { ...
5
votes
1answer
91 views

Is wanting to control the FPS of my animation a good reason to continue using setTimeout in stead of requestAnimationFrame?

I'm wondering if I should switch my game over to requestAnimationFrame. If there even is still a reason to do so anymore, as I've read that setTimeout() now also pauses when you switch tabs in the ...
5
votes
1answer
64 views

Do I have to clear setTimeouts after they've run?

Simple question really, I'm running a bunch of timeouts but wanna make sure they don't slow the page down and that for some reason they aren't kept in memory after they've executed. ...
5
votes
4answers
1k views

Delay JavaScript's function execution

I have a JQuery's .each loop that calls a function with a parameter per iteration, is there a way to delay this function call? I have tried setTimeout as in the following but this does not work as the ...
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
3answers
1k views

Why does setTimeout() “break” for large millisecond delay values?

I came across some unexpected behavior when passing a large millisecond value to setTimeout(). For instance, setTimeout(some_callback, Number.MAX_VALUE); and setTimeout(some_callback, Infinity); ...
5
votes
3answers
3k views

How to pause a setTimeout call? [closed]

Possible Duplicate: javascript: pause setTimeout(); Im using jQuery and working on a notification system for my site. The notifications automatically fadeout using the setTimeout function. ...
5
votes
3answers
4k views

Why is my function call that should be scheduled by setTimeout executed immediately?

Here's my issue. I have this function to test proxy servers. function crawl() { var oldstatus = document.getElementById('status').innerHTML; document.getElementById('status').innerHTML = ...
5
votes
3answers
941 views

JavaScript setTimeout() slows down under heavy load

I've created a script that fades the background color of an element. I use setTimeout() to make an incremental change to the color every 5 ms. The script works great if I'm just fading the background ...
5
votes
2answers
2k views

setTimeout - how to avoid using string for callback?

When using setTimeout, you have to put the code you want to execute into a string: setTimeout('alert("foobar!");', 1000); However, I want to execute a function to which I have a reference in a ...
4
votes
1answer
42 views

Why is the setTimeout function used here?

The following code is from Essential JavaScript Design Patterns For Beginners. Why is the setTimeout function used here? var pubsub = {}; (function(q) { var topics = {}, subUid = -1; ...
4
votes
2answers
87 views

Auto submit form after 5 seconds

I have a form that i am trying to submit after the page loads and 5 seconds has gone passed.. i have tried setTimeout but it doesnt appear to be working.. can anyone suggest why this would be the ...
4
votes
1answer
75 views

setTimeOut yields 233 fps while requestAnimationFrame yields 61

I did some tests on Chrome and requestAnimationFrame yielded 61 fps while setTimeOut( callback, 0 ), yielded 233 fps. If one would like to have more than 61 fps (which I'm not sure what for) but ...
4
votes
1answer
164 views

Bypassing IE's long-running script warning using setTimeout

I've asked about this before, and have found a few articles online regarding this subject, but for the life of me I cannot figure this out. I have a set of Javascript functions that calculate a ...
4
votes
1answer
71 views

The mystery arguments passed by setTimeout in Firefox [closed]

Possible Duplicate: Firefox setTimeout(func, ms) sending default parameters to callback I have been wondering this for a long time. When I type in the following line in FF, then I get: var ...
4
votes
2answers
384 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
3answers
126 views

setTimeout for XHR requests

quoting MDC: If there is a possibility that your logic could take longer to execute than the interval time, it is recommended that you recursively call a named function using window.setTimeout. ...
4
votes
1answer
124 views

Is there ever a good reason to pass a string to setTimeout?

We all know that passing a string to setTimeout (or setInterval) is evil, because it is run in the global scope, has performance issues, is potentially insecure if you're injecting any parameters, ...
4
votes
1answer
2k views

Chrome: timeouts/interval suspended in background tabs?

I was testing the accuracy of setTimeout using this test. Now I noticed that (as expected) setTimeout is not very accurate but for most appliances not dramatically inaccurate. Now if I run the test in ...
4
votes
2answers
164 views

Simulate click with setTimeout in Javascript

How would I simulate a click event with setTimeout? Something like: <script> window.onload=setTimeout(document.getElementById('mk1').click(),1000); </script> <a id="mk1" ...
4
votes
3answers
165 views

Javascript: How to clear a non-global (closured) setTimeout?

I'm trying to be a good citizen and keep as much out of the global scope as possible. Is there a way to access setTimeout variables that are not in the global scope? So that, in this example how ...
4
votes
2answers
172 views

In Javascript, what is the scope of variables used in setTimeout?

I am using the following code in a function: setTimeout("doSomething(var1)",10000); But, I also have var1 available as global variable. After 10000 milliseconds, will it call the local var1 or the ...
4
votes
2answers
238 views

sequential function call, while one of them uses setTimeout

I want to call three functions someTask1, someTask2 and someTask3 in that order. However, the function someTask2 involves Ajax call, and keep calling itself recursively using setTimeout unless a ...
4
votes
5answers
137 views

Can there only be one timeout in JavaScript?

This code seems not to work... It shows the twCharCount element only once after a long time. Could it be that there can only be one timeout set? Any suggestions making this code better? Thanks for any ...
4
votes
5answers
1k views

How to add pause between each iteration of jQuery .each()?

I'm grabbing an array of jQuery objects and then via .each() modifying each individual jquery with in the array. In this case I'm updated the class names to trigger a -webkit-transition-property to ...
4
votes
3answers
1k views

Call JavaScript's setTimeOut in dojo Class

I'm trying to convert my JavaScript functions to a dojo Class. I've a setTimeOut("functionName",2000) in one of my JS method. How do I call this from a method in the class decared using dojo.declare ...
4
votes
2answers
120 views

JavaScript setTimeout being cleared on Facebook in KRL app

I'm using a setTimeout that calls itself each time it runs to continual check the contents of different pages since each page gets loaded via ajax. It seems that the Facebook JS is running through all ...
4
votes
2answers
1k views

C# : How to set test TCP connection timeout?

I try to test TCP connection with the following code. System.Threading.Thread t = new System.Threading.Thread(() => { using (TcpClient client = ...
4
votes
4answers
490 views

setTimeout with zero delay used often in web pages, why?

I noticed a trend in web pages, that they use setTimeout(function(){...}, 0) more often instead of just making the call. I wonder why, couldn't find something about it. Except for the reason that ...
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 ...

1 2 3 4 5 12