Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some JavaScript code that looks like:

function statechangedPostQuestion()
{
  //alert("statechangedPostQuestion");
  if (xmlhttp.readyState==4)
  {
    var topicId = xmlhttp.responseText;
    setTimeout("postinsql(topicId)",4000);
  }
}

function postinsql(topicId)
{
  //alert(topicId);
}

I get a error that topicId is not defined Everything was working before i used the setTimeout() function.

I want my postinsql(topicId) function to be called after some time. What should i do?

share|improve this question
1  
dupe many times over – annakata Jul 27 '09 at 21:19
6  
it hurts a bit commenting on such an old topic but I just have to offer a third version (which in my opinion is much cleaner): setTimeout(postinsql.bind(null, topicId), 4000) – Hobblin Sep 13 '11 at 1:11

10 Answers

up vote 179 down vote accepted
setTimeout(function() {
    postinsql(topicId);
}, 4000)

You need to feed an anonymous function as a parameter instead of a string, the latter method shouldn't even work per the ECMAScript specification but browsers are just lenient. This is the proper solution, don't ever rely on passing a string as a 'function' when using setTimeout() or setInterval(), it's slower because it has to be evaluated and it just isn't right.

share|improve this answer
I remember I took me some time to get to this conclusion. Sometimes inside objects I think, the regular book call with '' doesn't work. I still dont know exactly why,,, but this was my solution aswell – Elzo Valugi Jul 27 '09 at 21:19
1  
window.setTimeout is a DOM method, and as such is not defined by the ECMAScript specification. Passing a string has always worked in browsers, and is a de facto standard—in fact, ability to pass a function object was added later, with JavaScript 1.2—it is explicitly part of the HTML5 draft spec (whatwg.org/specs/web-apps/current-work/multipage/…). However, using a string instead of a function object is generally considered poor style because it is essentially a form of delayed eval(). – Miles Jul 27 '09 at 21:41
1  
var temp = setTimeout(function() { postinsql(topicId); }, 4000); clearTimeout(temp); ?? – jezternz Jun 19 '12 at 4:00
2  
What would happen if topicId gets changed after the timeout was set, but before the function is called? – pilau Nov 2 '12 at 0:19
1  
@pilau that's exactly my problem: if the variables used in the anonymous function change before the timeout (such as in a for loop) then it will also change inside the function. So in my example setting 5 different timeouts in a for loop actually ended up using the same variables. Be careful when using this answer! – Cristian May 8 at 8:27
show 7 more comments

In modern browsers, the "setTimeout" receives a third parameter that is sent as parameter to the internal function at the end of the timer.

Example:

var hello = "Hello World";
setTimeout(alert, 1000, hello);

More details:

share|improve this answer
2  
I'm not sure why this answer wasn't selected as the best. Using an anonymous function works, sure, but if you can simply pass a third parameter into the original setTimeout function call... why not? – Kris Schouw Sep 21 '11 at 17:36
11  
Because it doesn't work in versions of IE still very much in the wild. – Tegeril Feb 8 '12 at 6:32
It also seems like it isn't an official part of the spec. Additionall, w3cschools has the third parameter as the language to run the function as. – Kevin Schroeder May 14 '12 at 21:07
This answer actually made me able to pass an event object, the other methods didn't. I already had an anonymous function. – Glenn Plas Oct 10 '12 at 22:40
3  
By far better answer. If you have code that modifies your parameter between "setTimeout" call and actual execution of the anonymous function - the anonymous function will receive modified value, not what it was at the time of setTimeout call. e.g.: for(var i = 0; i < 100; i++) { setTimeout(function() { console.write(i); }, 0); } this will log "100" a 100 times (tested on FF). Current answer helps avoiding this. – root Dec 14 '12 at 17:21
show 1 more comment

After doing some research and testing, the only correct implementation is:

setTimeout(yourFunctionReference, 4000, param1, param2, paramN);

setTimeout will pass all extra parameters to your function so they can be processed there.

The anonymous function can work for very basic stuff, but within instance of a object where you have to use "this", there is no way to make it work. Any anonymous function will change "this" to point to window, so you will lose your object reference.

share|improve this answer
2  
It is with sadness in my heart that I must inform: this doesn't work in internet explorer. :/ All the extra params come through as undefined. – Amalgovinus Apr 24 at 0:39

I think you want:

setTimeout("postinsql(" + topicId + ")", 4000);
share|improve this answer
+1 - Some people are a bit over zealous with the down voting - even with working solutions like this one. – Sean Bright Jul 28 '09 at 0:28
1  
I've run into instances where that simply does not work (always resulting in a 'function not defined' error) but using the anonymous function does work. Which is frustrating given that everyone seems to say the above syntax should always work. (could it be that jQuery somehow gets in the way of the 'quote as string' method?) – DA. Apr 29 '10 at 18:00
3  
Let's suppose that topicId is a function... Or an object. This won't work ! – Serafeim Nov 23 '11 at 13:41

Note that the reason topicId was "not defined" per the error message is that it existed as a local variable when the setTimeout was executed, but not when the delayed call to postinsql happened. Variable lifetime is especially important to pay attention to, especially when trying something like passing "this" as an object reference.

I heard that you can pass topicId as a third parameter to the setTimeout function. Not much detail is given but I got enough information to get it to work, and it's successful in Safari. I don't know what they mean about the "millisecond error" though. Check it out here:

http://www.howtocreate.co.uk/tutorials/javascript/timers

share|improve this answer

Replace

 setTimeout("postinsql(topicId)", 4000);

with

 setTimeout("postinsql(" + topicId + ")", 4000);

or better still, replace the string expression with an anonymous function

 setTimeout(function () { postinsql(topicId); }, 4000);

EDIT:

Brownstone's comment is incorrect, this will work as intended, as demonstrated by running this in the Firebug console

(function() {
  function postinsql(id) {
    console.log(id);
  }
  var topicId = 3
  window.setTimeout("postinsql(" + topicId + ")",4000); // outputs 3 after 4 seconds
})();

Note that I'm in agreeance with others that you should avoid passing a string to setTimeout as this will call eval() on the string and instead pass a function.

share|improve this answer
This will not work because the result of postinsql(topicId) will be executed by setTimeout. You need to wrap it in a function as with the first answer, or use a helper like Prototype's .curry() -- setTimeout(postinsql.curry(topidId),4000); – shuckster Jul 27 '09 at 21:20
1  
@brownstone: That's incorrect. The string will be evaluated when the timeout fires. – Miles Jul 27 '09 at 23:09

Hobblin already commented this on the question, but it should be an answer really!

Using Function.prototype.bind() is the cleanest and most flexible way to do this (with the added bonus of being able to set the this context):

setTimeout(postinsql.bind(null, topicId), 4000);

For more information see these MDN links:
https://developer.mozilla.org/en/docs/DOM/window.setTimeout#highlighter_547041 https://developer.mozilla.org/en/docs/JavaScript/Reference/Global_Objects/Function/bind#With_setTimeout

share|improve this answer

My problem with the prescribed method is that the function doesn't capture the value in memory at the time of the call, but references memory AFTER all the setTimeout methods have been queues. So in this example:

setTimeout(function() {
    postinsql(topicId);
}, 4000)

If topicId increments over time, only the LAST value will be used for ALL the calls. Not good.

share|improve this answer

This is a very old question with an already "correct" answer but I thought I'd mention another approach that nobody has mentioned here. This is copied and pasted from the excellent underscore library:

<script>
  _.delay = function(func, wait) {
    var args = slice.call(arguments, 2);
    return setTimeout(function(){ return func.apply(null, args); }, wait);
  };
</script>

You can pass as many arguments as you'd like to the function called by setTimeout and as an added bonus (well, usually a bonus) the value of the arguments passed to your function are frozen when you call setTimeout, so if they change value at some point between when setTimeout() is called and when it times out, well... that's not so hideously frustrating anymore :)

Here's a fiddle where you can see what I mean - http://jsfiddle.net/thedavidmeister/7t2bV/

share|improve this answer

@Jiri Vetyska thanks for the post, but there is something wrong in your example. I needed to pass the target which is hovered out (this) to a timed out function and I tried your approach. Tested in IE9 - does not work. I also made some research and it appears that as pointed here the third parameter is the script language being used. No mention about additional parameters.

So, I followed @meder's answer and solved my issue with this code:

$('.targetItemClass').hover(ItemHoverIn, ItemHoverOut);

function ItemHoverIn() {
 //some code here
}

function ItemHoverOut() {
    var THIS = this;
    setTimeout(
        function () { ItemHoverOut_timeout(THIS); },
        100
    );
}
function ItemHoverOut_timeout(target) {
    //do something with target which is hovered out
}

Hope, this is usefull for someone else.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.