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

Okay, I have setup up a handler for a div click but for some reason it fires on document.ready, and I can't really figure out why. Here is my code:

function statusCallback(status){
    //THIS IS THE JSONP CALLBACK RECEIVED FROM THE SERVER
    if(status.title==null){
        $('#core').attr('class','play');
        $('#button').animate({marginLeft:'350px'},2000,'easeOutCubic',function(){
            $('#button').click(initialBinder());
        });
    }else{

    }
}
function initialBinder(){
    $('#button').unbind('click');
    $('#core').attr('class','load');
    $('#button').animate({marginLeft:'0px'},2000,'easeOutCubic',function(){
        $.ajax({
            url:'http://24.182.211.76/status.php',
            crossDomain:true,
            dataType:'jsonp'
        });
    });
}
$(document).ready(function(event){
    $('#button').click(initialBinder());
});
share|improve this question

3 Answers

up vote 10 down vote accepted

Change:

$('#button').click(initialBinder());

to:

$('#button').click(initialBinder);

The former will actually call the function, not return a function pointer to it.

Perhaps this little bit of code can clarify the difference:

function foo(x, y) //I'm function foo, I add two numbers like a boss
{
   return x + y;
};

var x = foo(1,1); //x is 2 because we called the function
var y = foo; //y is a reference to function foo, no parentheses
var z = y(1,1); //z is 2 because we called foo through reference y
share|improve this answer
Beat me to it :( – Tegeril Jan 28 '12 at 3:12
Worked! Never knew that. Thanks! – nkcmr Jan 28 '12 at 3:13
1  
@Tegeril - Yea I was typing furiously! :) – Mike Christensen Jan 28 '12 at 3:13
$('#button').click(initialBinder);

You were not referencing a function as a callback but calling a function.

share|improve this answer

Try removing the parens from your bind statement like this:

$(document).ready(function(event){
    $('#button').click(initialBinder);
});

What's happening is that the function is getting executed rather than being passed as an argument.

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.