Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking to pass an anonymous function to another function, but it doesn't seem to be working as I'd like.

I've attached the code, I think it'd give you a better idea what I'd to do.

How do I successfully pass a function as an argument, and then invoke it?

<script language="javascript" type="text/javascript">
function do_work(success) {
    success;
}

do_work(function () {
    alert("hello")
});

</script>
share|improve this question
2  
The language attribute is deprecated. – Marcel Korpel May 19 '10 at 18:44

2 Answers

up vote 12 down vote accepted

You have to actually call the function:

function do_work(success) {
    success();
}
share|improve this answer
Thank you! I knew it had to be something simple. – TFerrell May 19 '10 at 18:57

The variable success is an "instance" of Function, so you can also call apply(), that will allow you to redefine the scope :

function do_work(success) {
    var foo = {
       bar : "bat"          
    }
    success.apply(foo);
}

do_work(function () {
 alert(this.bar)
});
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.