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

Consider the following javascript:

$(function(){
  var private_function = function(){
    alert("private_function!");
  }

  setTimeout("private_function();", 1000);  

});

This yields the error "private_function is not defined".

Is there a way to defer execution of a private / anonymous function in javascript without polluting the global namespace / exposing it via a global module?

Thanks for any suggestions.

share|improve this question

2 Answers

up vote 7 down vote accepted
$(function(){
  var private_function = function(){
    alert("private_function!");
  }

  setTimeout(private_function, 1000);  

});

OR

$(function(){
  var private_function = function(){
    alert("private_function!");
  }

  setTimeout(function(){
    private_function(); // with this method you can also pass some arguments
  }, 1000);  

});
share|improve this answer
simple setTimeout(private_function, 1000); w/o quotes should work too, no? – Christoph Apr 23 '12 at 9:28
1  
Yep, I gave two solutions ;), look at the first one. But I also gave the second solution in case he needs to pass some arguments to its callback function. Also sometime the first method can't work, for example when you want to use a different scope with apply or call – Tronix117 Apr 23 '12 at 9:30
Great thanks, never realized you could pass a function directly like that... – Chris Apr 23 '12 at 9:47
That's why Javascript is magic ;) – Tronix117 Apr 23 '12 at 11:55

use setTimeout(private_function, 1000); to set the Timeouthandler to the function.

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.